hi,
i am an external sql script that i called using sqlcmd from command prompt. However, an error appeared, "Msg 102, Level 15, State 1, Server db\SQLEXPRESS, Line 2
Incorrect syntax near 'QUOTED_IDENTIF I'."
Is there any software that i can use to validate the sql script ? i need more clear error description.
i am an external sql script that i called using sqlcmd from command prompt. However, an error appeared, "Msg 102, Level 15, State 1, Server db\SQLEXPRESS, Line 2
Incorrect syntax near 'QUOTED_IDENTIF I'."
Is there any software that i can use to validate the sql script ? i need more clear error description.
Code:
--[START EXPORT FILE : First line of script file] SET NOCOUNT ON GO SET QUOTED_IDENTIFIER ON GO SET IDENTITY_INSERT tbl_test ON GO ALTER TABLE tbl_test NOCHECK CONSTRAINT ALL ... ALTER TABLE tbl_test CHECK CONSTRAINT ALL GO SET IDENTITY_tbl_test OFF SET QUOTED_IDENTIFIER OFF GO SET NOCOUNT OFF --[COMPLETE EXPORT FILE: Last line of script file]
Comment