Viewing 15 posts - 2,596 through 2,610 (of 2,635 total)
I agree with Steve. Save yourself the hassle of managing a bunch of separate backup files and just append all the log backups for a day to the backup device...
March 16, 2004 at 11:47 am
Check BOL->job steps->creating job steps. Here's an excerpt showing how to add a T-SQL job step in Enterprise Manager (you can also do it in T-SQL by using sp_add_jobstep):
March 16, 2004 at 10:24 am
Your question could be rephrased to ask whether Enterprise Edition is better than Standard Edition.
You could see better performance because only SQL Server Enterprise Edition can be installed on a...
March 16, 2004 at 9:50 am
We have a four person data management group that does all the traditional dba jobs of installation, upgrading, backup & recovery, security, performance tuning, and user administration. Additionally, they help...
March 15, 2004 at 11:01 am
We've gone with option #3, not only for user-defined functions, but also for tables and views that are used by multiple applications. We've found that it's easier to maintain than storing...
March 15, 2004 at 10:03 am
You have a lot of choices when using DTS to import data. The simplest thing you can do to avoid having to reassign permissions on the destination tables is to...
March 5, 2004 at 10:53 am
1. Change all object ownership to dbo
2. Drop user 'test' from database
3. Change database owner to 'test'
User 'test' will be the aliased as dbo so all the objects will be...
February 25, 2004 at 11:47 am
I use Log Explorer, but for a quick, cheap look into a T-log, try the undocumented DBCC LOG.
Syntax:
DBCC log ({dbid|dbname}, [, type={-1|0|1|2|3|4}])
where:
dbid or dbname...
February 18, 2004 at 2:36 pm
I've used the dtsrunui utility to generate the dtsrun command, then copied it into a new job step.
Check this SQLDTS.com article for brief instructions on how to use dtsrunui. I...
February 18, 2004 at 10:42 am
I see the red squiggly line when I've paused the SQL Server service.
January 29, 2004 at 11:59 am
"B) I always thought an MSDN subscription was the most cost-effective way of licensing SQL Server (and other dev tools) for a development environment...?"
Considering that the current retail prices for...
January 29, 2004 at 10:34 am
The sysdtspackagelog table in msdb contains package log data.
Run this in Query Analyzer to show the names of packages that have been executed with logging enabled:
use msdb
select name from sysdtspackagelog
If...
January 21, 2004 at 3:41 pm
I have a couple of guesses, but can you post what goes wrong when you schedule the package? Do you get an error message?
My guesses:
1. The account that SQL Server...
January 13, 2004 at 4:45 pm
Homebrew01,
A database user can create an object owned by DBO by specifying the object name as 'dbo.objectname' rather than just 'objectname'.
January 5, 2004 at 12:15 pm
You could backup the msdb database on your development server and restore it on your production server.
There's something in the script library that claims to script all jobs at once,...
December 19, 2003 at 9:23 am
Viewing 15 posts - 2,596 through 2,610 (of 2,635 total)