create Procedure [dbo].[TextFinder] (@Text varchar(500),@Type varchar(2)=NULL) AS BEGIN SELECT DISTINCT o.name AS ObjectName, CASE o.xtype WHEN 'C' THEN 'CHECK constraint ' WHEN 'D' THEN 'Default or DEFAULT constraint' WHEN 'F' THEN 'FOREIGN KEY constraint' WHEN 'FN' THEN 'Scala...
sp_createorphan和sp_droporphans 預存程式用於 ODBC ntext、text 和image processing。 sp_reset_connection SQL Server 會使用預存程式來支援交易中的遠端預存過程調用。 此預存程式也會在從連線集區重複使用連線時引發稽核登入和稽核註銷事件。 下表中的系統預存程式僅適用於 SQL Server 實例或透過用戶端 API ...
sp_createorphan和sp_droporphans預存程式用於 ODBCntext、text和imageprocessing。 sp_reset_connectionSQL Server 會使用預存程式來支援交易中的遠端預存過程調用。 此預存程式也會在從連線集區重複使用連線時引發稽核登入和稽核註銷事件。 下表中的系統預存程式僅適用於 SQL Server 實例或透過用戶...
Consult this SQL Server error code list (between 4000 and 4999) to find explanations for error messages for SQL Server database engine events.
SQL Server Azure SQL 資料庫 Azure SQL 受控執行個體 Azure Synapse Analytics Analytics Platform System (PDW) Microsoft Fabric 的 SQL 端點分析 Microsoft Fabric 的倉儲 執行可重複使用多次的 Transact-SQL 語句或批次,或動態建置的語句。 Transact-SQL 語句或批次可以包含內嵌參數。
SQL Server 預存程序可以有整數傳回碼和輸出參數。 傳回碼和輸出參數會在來自伺服器的最後一個封包中傳送,因此要等到完全釋放資料列集之後才可供應用程式使用。 如果此命令傳回多個結果,則當IMultipleResults::GetResult傳回 DB_S_NORESULT 或是當IMultipleResults介面完全釋放時 (以先發生...
CreateFullTextStopListStatement CreateFunctionStatement CreateIndexStatement CreateLoginSource CreateLoginStatement CreateMasterKeyStatement CreateMessageTypeStatement CreateOrAlterFunctionStatement CreateOrAlterProcedureStatement CreateOrAlterTriggerStatement CreateOrAlterViewStatement CreatePartitionFunctionStatem...
Existing ntext, text, and image large object (LOB) data is not updated to make space for the row versioning information when a database is upgraded to SQL Server from an earlier version of SQL Server. However, the first time the LOB data is modified, it is dynamically upgraded to enable...
SQL Anywhere Error Messages Listed by Message Text SQL Preprocessor Error Messages MobiLink Server Error Messages MobiLink Server Warning Messages MobiLink Communication Error Messages MobiLink Replay Utility Error Messages MobiLink Replay Utility Warning Messages Relay Server Error Messages...
If you just want to find a match. SELECT * FROM MyTable WHERE INSTR('word1 word2 word3', Column1)<>0 SQL Server: CHARINDEX(Column1, 'word1 word2 word3', 1)<>0 To get exact match. Example: (';a;ab;ac;',';b;') will not get a match. SELECT * FROM MyTable WHERE INS...