Viewing 15 posts - 1,171 through 1,185 (of 2,636 total)
Sorry, I can't help with C# code. I've only used VB to work with the DTS Object Model. BTW, it's DTSPkg.RLL rather than SQLDMO.RLL.
March 5, 2008 at 9:13 am
If you can't use a log reader tool, then follow Chris's advice and restore the database with a new name. Then you can select the rows you want and...
March 5, 2008 at 8:53 am
I think you'll need to use the DTS Object Model. Check out this article: http://www.sqlservercentral.com/articles/DTS/automatedtslogging/1124/
March 4, 2008 at 10:13 am
You can't restore backups of SQL 2000 system databases i.e. master, model, or msdb in SQL 2005 because of all the structural changes in SQL 2005.
March 4, 2008 at 10:03 am
Good advice from Chris. You couldn't roll back the transaction because it had already been commited in the package. You can only roll back a transaction that you...
March 4, 2008 at 9:55 am
I agree with Adam. I also suspect that, because a lot of people were used to storing DTS packages in msdb in SQL 2000, MS kept that option.
March 4, 2008 at 9:52 am
It's wrong if you can't trust them to manage the database responsibly. Who is responsible for backups - you or the clients? If it's you, then you shouldn't...
February 29, 2008 at 8:51 am
Query the sysarticles table in the publishing database.
February 28, 2008 at 5:05 pm
Hi Bob,
Are you dealing with legacy DTS packages or SSIS packages? The "dts_" database roles in msdb work only for SSIS packages stored in msdb, not for DTS packages....
February 28, 2008 at 4:52 pm
If by "administrators" you mean members of the sysadmin server role, you can't prevent them from accessing any database. They don't even have to be mapped to a user...
February 28, 2008 at 4:39 pm
jsheldon,
What errors do you get when you execute the package? There's no guarantee that it'll run in a job either if we don't know why it won't run manually.
February 28, 2008 at 3:33 pm
Whoever is making the backups must be a member of the sysadmin server role, the db_owner database role, or the db_backupoperator database role. Remove anyone from those roles who...
February 28, 2008 at 9:21 am
Yes, you can either right-click on Users in the database and select "New User..." or you can do it at the login level like I described in my previous post....
February 28, 2008 at 8:49 am
Yes. Create the logins then assign database access to the login, which will create a user in the database.
In SSMS, expand Security, right-click on Logins, and select...
February 27, 2008 at 10:06 am
Viewing 15 posts - 1,171 through 1,185 (of 2,636 total)