Viewing 15 posts - 556 through 570 (of 1,315 total)
The best error handling method in SQL 2000 is defensive programming that checks everything in advance that you can think of that might cause an error. SQL 2005 gives you...
March 12, 2007 at 7:01 am
I don't think I've tried that. Have you tried setting the agent job step up both as a Integration Services step and as a CmdExec step that uses a dtexec...
March 9, 2007 at 2:49 pm
One technique would be to add something at the end of the job that inserted a record in a table, updated a record, or otherwise created an artifact that the...
March 9, 2007 at 11:34 am
If you have enabled xp_cmdshell, you could use it to execute dtexec to run the package.
If you set up an unscheduled Agent job with one step to run the package,...
March 9, 2007 at 7:53 am
You're going to have to dig into the documentation some more to figure out how to write a script transformation. It's not that difficult, but the object model is completely...
March 9, 2007 at 7:40 am
The linked server definition I showed is from a 32-bit server. I don't know if they have a 64-bit provider.
March 8, 2007 at 9:40 am
We use a Teradata linked server with this definition:
EXEC
master.dbo.sp_addlinkedserver
@server = N'TERADATA'
March 8, 2007 at 7:04 am
While the list of things I don't know keeps growing daily despite my best efforts, I'm having trouble with the notion that the type of login used for a SQL...
March 7, 2007 at 7:20 am
I apologize for the error, the /3GB switch does nothing for SQL 2000 Standard, only Enterprise or Developer. The only system I used it on happened to be SQL 2000...
March 2, 2007 at 6:19 am
There is no effect on application response.
The first major difference is that the DBA gets involved in maintaining users & passwords with SQL authentication, and applications need to have SQL...
March 1, 2007 at 3:09 pm
If you can migrate to SQL 2005, snapshot isolation would probably be a great solution for whatever issue you are having.
You can't enforce ROWLOCKS at a database level because that would...
March 1, 2007 at 8:30 am
The best place to find info about this and other system stored procedures is in Books Online. Just look up sp_help_job in the index.
March 1, 2007 at 6:41 am
The /3GB switch in boot.ini will allow SQL Server 2000 Standard to use 3GB RAM on a 4GB server. This reduces the amount of RAM available for the operating system...
March 1, 2007 at 6:36 am
I don't believe you've posted the exact commands you've been using that are causing you problems. This script runs successfully on one of my SQL 2000 servers, and shows the...
February 28, 2007 at 5:13 pm
If the table appears in the master..sysobjects table, it was created in the master database. This may not have been your intention, but that's what happened.
February 28, 2007 at 3:12 pm
Viewing 15 posts - 556 through 570 (of 1,315 total)