Viewing 15 posts - 1,396 through 1,410 (of 2,636 total)
In Object Explorer, expand Management, expand Legacy, expand Data Transformation Services. The packages listed are those that are stored in msdb.
Greg
August 22, 2007 at 12:27 pm
SA,
Did all the jobs stop working or only some of them? If only some, what do they have in common?
My experience with jobs that show they're executing but never...
August 22, 2007 at 12:25 pm
The same way you'd restore a user database except you'll need to stop the SQLSERVERAGENT service to ensure that there are no connections to msdb. See "restoring msdb database" in...
August 21, 2007 at 9:17 am
The table is owned by dbo, but is the stored procedure also owned by dbo? The objects in both databases must have the same owner.
Greg
August 21, 2007 at 9:09 am
You could try using the results of SP_HELPSRVROLEMEMBER which returns the same thing in both SQL 2000 and SQL 2005.
Greg
August 21, 2007 at 9:01 am
Another suggestion for moving DTS packages:
DTSBackup 2000 is a free tool at http://www.sqldts.com/242.aspx. It will copy multiple packages so you don't have to open each one and save them...
August 20, 2007 at 5:21 pm
Did you enable cross-database ownership chaining on both databases? Are stored procedure and the tables owned by the same login?
Greg
August 20, 2007 at 2:11 pm
According to BOL:
Only a job owner or members of sysadmin can edit jobs.
Only a job owner or members of sysadmin can change a schedule, though a member of SQLAgentOperatorRole (with sp_update_schedule) can...
August 17, 2007 at 10:07 am
I'm assuming there's some processing that goes on during the four hours that needs to happen before the data can be copied to production. If that's not true, I think...
August 17, 2007 at 9:19 am
Okay, sorry. Let's try something else. Open the previous version of the package that still has the connection object referencing the deleted database.
Open the properties of the connection object and...
August 16, 2007 at 2:45 pm
Right-click on a package in Management Studio and select "open".
Greg
August 16, 2007 at 2:30 pm
I think you can detach the current MSDB database, move the database files of the old database and reattach.
See this article: http://support.microsoft.com/kb/224071/
Greg
August 16, 2007 at 2:28 pm
Don't delete the transaction log unless you want to spend some time with an inaccessable database. The transaction log is not a static file that can be deleted at will. ...
August 16, 2007 at 12:32 pm
Actually, in SQL 2000, schema is equivalent to the owner of an object. So, if all the objects are with 'dbo' e.g. 'dbo.tablename' or 'dbo.sprocname', 'dbo' is the schema name.
Greg
August 16, 2007 at 10:12 am
Viewing 15 posts - 1,396 through 1,410 (of 2,636 total)