Viewing 7 posts - 1 through 7 (of 7 total)
Check this: http://www.sqlservercentral.com/articles/T-SQL/63003/
Also you can pass it as XML parameter, parse and insert it.
Thanks,
Nikul
March 22, 2010 at 7:17 pm
You can pass it as XML parameter, parse and insert it.
Thanks,
Nikul
March 22, 2010 at 7:12 pm
You can use third party red-gate SQL packager.
Thanks,
Nikul
March 18, 2010 at 2:01 pm
you can disable the constraint
ALTER TABLE 'table name' NOCHECK CONSTRAINT all
ALTER TABLE 'table name' DISABLE TRIGGER all
Thanks,
Nikul
March 18, 2010 at 1:37 pm
Here you go.
--- Create Schema/User
IF EXISTS (SELECT * FROM sys.database_principals WHERE name = N'db_executor' AND type = 'R')
DROP ROLE [db_executor]
/* CREATE A NEW ROLE */
CREATE ROLE db_executor
Thanks,
Nikul
March 16, 2010 at 12:08 pm
You can use the internal tables INSERTED and the DELETED and find out what to do.
Thanks,
Nikul
March 10, 2010 at 6:32 pm
I tried on AdventureWorks and found no issue.
SELECT
e.[EmployeeID]
,c.[Title]
,c.[FirstName]
,c.[MiddleName]
...
December 23, 2009 at 4:13 pm
Viewing 7 posts - 1 through 7 (of 7 total)