Viewing 3 posts - 1 through 3 (of 3 total)
You can get a list of all the triggers in the database by following command in Query Analyzer.
select name from sysobjects where type = 'tr'
you can view the code of...
November 26, 2008 at 9:16 am
#903858
Let me rephrase the question. I need to create an interface using which a user who does not directly work with SQL Server can create roles, logins, give rights to...
November 25, 2008 at 11:52 pm
#903570
You can create a batch file with the following code. Replace the path,tablename,userid, password,server with your path.
bcp db.dbo.tablename in c:\bcpdata\filename.txt -Uuser -Ppassword -server -c
pause
May 28, 2008 at 2:00 pm
#821438