Viewing 15 posts - 931 through 945 (of 1,157 total)
You may find these links useful
http://www.sqlservercentral.com/Forums/Topic574316-148-1.aspx
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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?
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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?
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
August 1, 2010 at 10:11 pm
Did you try sending the message to yourself without the attachments?
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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?
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
August 1, 2010 at 2:10 pm
Please give the details of the error that you get while installing
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
August 1, 2010 at 3:34 am
Are you able to TELNET that server on the SQL server port?
telnet portnumber
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
August 1, 2010 at 12:52 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...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
July 31, 2010 at 1:42 pm
As per Microsoft documentation is not possible to "uninstall SP3".
After SQL Server 2005 SP3 has been applied, it cannot be removed without uninstalling the entire product
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
July 31, 2010 at 1:36 pm
You did not post the job step output log. Does it have any information?
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
July 31, 2010 at 1:25 pm
GilaMonster (7/31/2010)
sys.dm_db_indx_physical_stats
Just an FYI. There is a typo. "e" is missing in index.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
July 31, 2010 at 12:27 pm
This will give you the Reserved and Used space details for all the indexes in a table. If this does not meet your requirement, just tweak the query.
...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
July 31, 2010 at 12:06 pm
Viewing 15 posts - 931 through 945 (of 1,157 total)