2015年8月19日 星期三

【Easy Flow 】EasyFlow 更改文具資料


以 Vsphere 工具 login,至路徑 開始 > 程式集 > Microsoft SQL Server 7.0 > Enterprise Manager,此時會出現 "SQL Server Enterprise Manager" 視窗

點選到路徑 Console Root > Microsoft SQL Servers > E-Flow (Windows NT) > Databases > EF2KWeb > Tables, 此時會列出所有 Table

在 book 這 Table 上,點選 Open Table > Return Top ... (若點選 Return all rows 會很耗時),此時出現 SQL 指令視窗

SELECT TOP 1000 *
FROM [dbo].[book]

刪除下列 items:

Keyin 下列SQL指令,輸入完,按下 Verify SQL 按鈕,再按下 Run 按鈕

DELETE FROM [dbo].[book]
WHERE name = '釘書針 雄獅#10 藍盒' and id = '1002011.01.001';

DELETE FROM [dbo].[book]
WHERE name = '釘書針 雄獅#10 綠盒' and id = '1002011.01.101';

name                   id               unit      price

釘書針 雄獅#10 藍盒     1002011.01.001   合        876
釘書針 雄獅#10 綠盒     1002011.01.101   合        36

之後,Keyin 下列命令,新增一筆資料:

INSERT INTO [dbo].[book]
(name, id, unit, price)
VALUES
('訂書針 Plus 10 號針','1110010.01.001','合',90);

Reference: https://jerry2yang.wordpress.com/2011/04/20/easyflow-%E4%BF%AE%E6%94%B9%E9%9B%BB%E5%AD%90%E8%A1%A8%E5%96%AE%E7%9A%84%E7%B6%B2%E9%A0%81%E5%85%83%E4%BB%B6%E5%B1%AC%E6%80%A7/ http://www.dotblogs.com.tw/felixfu/category/11386.aspx 2. 小花爸技術網站

沒有留言:

張貼留言

prettyPrint();