Viewing 15 posts - 166 through 180 (of 2,635 total)
You can find the version guid values by querying msdb.dbo.sysdtspackages. Once you know that, you can see which version is used in the DTSRUN command and you can specify...
Greg
February 11, 2010 at 3:05 pm
If he had saved the packages with one of the protection levels I mentioned, you'd be prompted for the password when you open the package. To be sure, maybe...
Greg
February 11, 2010 at 2:42 pm
Sorry, I'm not clear what your question is. Do you want to be able to restart a job at a particular step or do you want to restart a...
Greg
February 11, 2010 at 9:27 am
Most lilkely, the team member saved the packages with the default protection level EncryptAllWithPassword so nobody can open the packages exept that user. Have him or her save the...
Greg
February 11, 2010 at 9:19 am
There are some SQL Server Agent fixed database roles in msdb that may help you if you assign some users to them. See the details in BOL for SQLAgentUserRole,...
Greg
February 10, 2010 at 10:03 am
I had a similar problem with allowing a job to be started from an asp page. You may be able to adapt this to your situation.
1. Create a SQL...
Greg
February 10, 2010 at 9:53 am
Try adding Psychemedics\OnlineServices as a user in the ClientServices database with no permissions. That should allow the stored procedure to work.
Greg
February 4, 2010 at 9:17 am
I've done that, but I've come to prefer this tool: http://www.sqldts.com/242.aspx. It's way easier to use and is dead dependable...and it's free.
Greg
February 3, 2010 at 9:17 am
You can create a global variable in the package to hold the file name/path and use it to set the text file connection. Here's a link to some sample...
Greg
February 3, 2010 at 9:09 am
If you want to retrieve the identity value for the row just inserted in the same stored procedure, I don't know why SCOPE_IDENTITY wouldn't work. Can you elaborate on...
Greg
February 2, 2010 at 10:59 am
I've used it and it does just what you've described - allows the user to execute user stored procedures and functions in the database. The drawback is you can't...
Greg
February 2, 2010 at 10:51 am
By default, those schemas are owned by themselves, so db_datareader is owned by the db_datareader role. I'd just use the schema properties in SSMS to change the owner, then...
Greg
January 28, 2010 at 8:54 am
Actually, if a step is removed, none of the other steps need to be modified unless the step that's removed is the last one. Same with adding a new...
Greg
January 27, 2010 at 3:58 pm
Our backup jobs have a step for each database. That makes it easy to continue if a step fails by setting the on failure action to 'go to the...
Greg
January 27, 2010 at 3:24 pm
Yes, you can. Here's a good explanation of how to do it: http://www.mssqltips.com/tip.asp?tip=1112
Greg
January 27, 2010 at 3:17 pm
Viewing 15 posts - 166 through 180 (of 2,635 total)