Viewing 11 posts - 106 through 116 (of 116 total)
Forgive me, I was a beginner when I first wrote it.
November 21, 2005 at 1:30 pm
It's a cleanup function. Use it just before running EXEC().
-- Concatenate your sql statement
SET @SQL = <<snip>>
-- Print for troubleshooting
PRINT @SQL
-- Remove non-printing characters
SET @SQL = dbo.UDF_TRIM( @SQL )
-- Execute
EXEC(...
November 21, 2005 at 12:55 pm
I have found that carriage return line feeds work okay in the editor, but there is a problem during execution. So, I use a cleanup function before running the EXEC()....
November 21, 2005 at 11:51 am
Open the MSSQLSERVER service on your desktop and change the login to "This account", then enter your domain login.
November 18, 2005 at 2:23 pm
You can also create an instance of SQL Server on your desktop, run distributed transactions to the production server to gather job failure information, then shoot out emails from your desktop.
November 9, 2005 at 11:23 am
Why not create a job history table in your user database and populate it off of a trigger on the system table?
November 4, 2005 at 9:55 am
I just had this. Your sysindexes table may be out of sync. Running "DBCC UPDATEUSAGE (0)" cleaned things up for us.
November 1, 2005 at 10:01 am
The DTC may need to be reconfigured. We just migrated to Windows 2003 when this problem cropped up.
Microsoft has a fix:
October 9, 2005 at 5:19 pm
Ray: The poll setting is just fine. It still works with other sql instantiations living on other windows servers in the network, just not the new one; so it's not that.
David:...
October 9, 2005 at 5:06 am
Why make life hard for yourself? Don't script the jobs and packages, just backup and restore msdb along with your user databases.
October 8, 2005 at 7:55 pm
I got around this by instantiating SQL Server on my desktop (which does have Outlook) then linking servers. Then you have to root around in the jobs tables to get...
October 8, 2005 at 7:45 pm
Viewing 11 posts - 106 through 116 (of 116 total)