Viewing 15 posts - 826 through 840 (of 2,636 total)
Yeah, it'll just create the jobs. We've used these scripts for years to migrate jobs to new instances and never had anything bad happen. You may want to...
September 5, 2008 at 11:58 am
You could just create it in master and when you run it use:
EXEC master.dbo.rr_Get_ForeignKeyTables @TableName = 'ttt', @DB = 'ddd'
September 5, 2008 at 9:18 am
I'm not sure what you mean when you say, "it wants to simply run each step...". When I script a job, whether it's on a SQL 2000 instance or...
September 5, 2008 at 9:04 am
I'm not sure. Run this:
EXEC sp_helplogins 'joa'
The database name returned as 'DefDBName' is the default database for the login. Make sure the login has a user in that...
September 4, 2008 at 9:44 am
How much space each instance requires depends on what you put in it. BOL states the minimum space requirement for each component. Add the space your data will...
September 4, 2008 at 9:26 am
I'm not sure what a .net membership table is, but this is what you need to transfer logins from one SQL Server instance to another: http://support.microsoft.com/kb/918992/. Sp_help_revlogin generates a script...
September 3, 2008 at 2:24 pm
I think "State: 16" means the login's default database isn't available, either because it doesn't exist or the login doesn't have permissions to connect to it.
September 3, 2008 at 9:32 am
Here's one possibility:
select dateadd(dd, datediff(dd,0,Getdate()),0)- 1
select (dateadd(dd, datediff(dd,0,Getdate()),0)- 1)+ '23:59:59'
September 2, 2008 at 5:08 pm
If this is a DTS package, Jack's BIDS suggestion won't work and, unfortunately, there isn't a way to copy a Data Transformation task in DTS Designer. Lot's of connections...
September 2, 2008 at 3:58 pm
In SQL 2005, you'd use sp_send_dbmail and set the @file_attachments parameter to the name of the output file.
September 2, 2008 at 3:39 pm
Yes, you can do that. All three statements will be rolled back.
September 2, 2008 at 10:53 am
I tried David's schedule also, but it just seemed like it took too long to get to that longer weekend.:P
August 28, 2008 at 3:13 pm
If you want to make sure your database remains in a valid, consistent state, you shouldn't kill a session that is rolling back a transaction. In most cases, if...
August 28, 2008 at 9:46 am
I work in Washington state where the governor recently said that a 4 day work week is being investigated as a way for state government to save money. I'm...
August 28, 2008 at 9:08 am
Viewing 15 posts - 826 through 840 (of 2,636 total)