USE XXX
go
CREATE GLOBAL TEMPORARY TABLE #dbo.tbl_gbl_temp11
(parent_deal_id numeric(10,0) not null,
deal_id numeric(10,0) not null,
code_name varchar(100) null
)
go
IF OBJECT_ID('dbo.tbl_gbl_temp1') IS NOT NULL
PRINT '<<< CREATED TABLE dbo.tbl_gbl_temp1 >>>'
ELSE
PRINT '<<< FAILED CREATING TABLE dbo.tbl_gbl_temp1 >>>'
go
創建GLOBAL TEMPORARY當我執行它上面提供了以下錯誤:無法在SYBASE ASE 15.7.0
Number (156) Severity (15) State (2) Server (XXX) Incorrect syntax near the keyword 'TABLE'.
但是我們的數據庫是Sybase ASE 15.7.0。所以我們沒有「GLOBAL TEMPORARY」的特權。 – Balakrishna