Viewing 15 posts - 346 through 360 (of 2,636 total)
Opinions vary about the best place to store packages. I prefer saving them as files in a specific directory and making sure the directory is included in server tape...
June 2, 2009 at 3:31 pm
I guess your question is how to make the job run? I've only seen this happen when the owner is a domain account and changing the owner to sa...
June 1, 2009 at 12:22 pm
Here's how I've done it:
1. Run SQL Server Upgrade Advisor on SQL 2000 to see any changes needed in DTS packages
2. In SQL 2000 Enterprise Manager, save DTS packages as...
June 1, 2009 at 12:15 pm
Only the owner of the diagram i.e. the user who created it or a member of the db_owner or sysadmin roles can open a diagram.
We have developers use...
June 1, 2009 at 8:45 am
Can you describe how you enabled logging and specified the events? Did you follow the steps described here?: http://msdn.microsoft.com/en-us/library/ms141212(SQL.90).aspx
May 28, 2009 at 9:13 am
Please clarify whether this is a DTS package or an SSIS package. In either case, logging must be enabled in the package before any logging takes place and you...
May 27, 2009 at 5:19 pm
There's a fixed database role in msdb whose members can list and view the properties of jobs, but doesn't allow editing the properties. It's called SQLAgentReaderRole. Ask you...
May 27, 2009 at 5:10 pm
I'm pretty sure you'd have to search for the text (insert, update, etc) in the source code of the stored procedures which is stored in syscomments.
This article describes...
May 27, 2009 at 8:48 am
Does the user query the table directly via Query Analyzer or does it use a stored procedure? Try running this to see what permissions are granted for the table:...
May 27, 2009 at 8:37 am
I actually don't think it's all that inefficient to calculate the date in each step, but you could calculate it in the first step and write it to a table...
May 22, 2009 at 9:48 am
I don't know if this is more elegant, but you could create a separate monthly schedule for each day from the 21st thru the 31st. That would mean you'd...
May 21, 2009 at 5:30 pm
I like to use RESTRICTED_USER rather than SINGLE_USER to make sure I'm the one who can connect to the database.
May 21, 2009 at 12:49 pm
Twice a day won't do much about keeping the logs manageable, but it really depends on how much update activity there is. I'd start with hourly backups and adjust...
May 21, 2009 at 12:44 pm
RP_DBA (5/21/2009)
May 21, 2009 at 10:26 am
You can't prevent SQL Server from writing to the transaction log. It's an integral part of the database engine. Since the package runs so often, you should consider...
May 21, 2009 at 10:19 am
Viewing 15 posts - 346 through 360 (of 2,636 total)