Viewing 15 posts - 931 through 945 (of 1,161 total)
In SQL Server 2000, there is no default trace running unlike SQL Server 2005 and above. The query you had posted gets the information from the default trace.
In order to...
August 2, 2010 at 4:14 am
You can accomplish through the Execute SQL Task. You can write the custom sql script to meet your requirements.
August 2, 2010 at 4:08 am
For finding job details you may find this script useful.
Running sp_helplogins will give the details of all the logins on an instance.
August 2, 2010 at 3:00 am
Warren Peace (8/1/2010)
OK, I opened just that step in BID's, no issues. I even exported it to a file then ran it, it finished OK.
How long did it take...
August 1, 2010 at 10:22 pm
You may find these links useful
http://www.sqlservercentral.com/Forums/Topic574316-148-1.aspx
August 1, 2010 at 10:18 pm
EXEC msdb.dbo.sp_send_dbmail
@recipients=N'myemail@mydomain.com',
@body='Message Body',
@subject ='Message Subject automated test',
@profile_name ='mailtest',
@file_attachments ='C:\FileAttachment.txt';
What is the output after executing the above query? Do you see any error messages?
August 1, 2010 at 10:13 pm
incorrect syntax near 'newschema' .expecting a doublecolon.
Does the error message read out "expecting a doublecolon"? Why not put a GO keyword after each statement?
August 1, 2010 at 10:11 pm
Did you try sending the message to yourself without the attachments?
August 1, 2010 at 9:47 pm
How about creating a text box in the report and assigning an hyperlink to opt-out in that?
August 1, 2010 at 2:10 pm
Please give the details of the error that you get while installing
August 1, 2010 at 3:34 am
I strongly feel that the content of the job has some problems. Since you have merged two maintenance plans, something has gone wrong during the process.
Could you please open the...
August 1, 2010 at 12:50 am
The order can be according to your convenience. There is no hard and fast rule as to which of these should be running first.
July 31, 2010 at 1:45 pm
Login as SA or any user who has System Admin privileges on that instance. Check the permissions for that database.
July 31, 2010 at 1:44 pm
If nothing has changed in this query, there is no need to change anything here. Looks like some other query which is executed prior to this is causing the dead...
July 31, 2010 at 1:42 pm
Viewing 15 posts - 931 through 945 (of 1,161 total)