Viewing 15 posts - 856 through 870 (of 1,132 total)
As you have discovered, using elapsed time as a comparison criteria is un-relialable. This can be due to network workload, other SQL running on the server, virus scanning,...
November 19, 2005 at 9:06 pm
One additional note, if you plan to schedule the DTS Package, the Data Source must be defined on the database machine and must be a system dsn.
November 19, 2005 at 9:12 am
Is the ODBC defined as a SYSTEM or a USER DSN ?
November 19, 2005 at 9:10 am
Looks like this is a known problem since December 1, 2003 and there is no fix, just workarounds.
PRB: DBCC SHRINKFILE and SHRINKDATABASE Commands May Not Work Because of Sparsely Populated...
November 18, 2005 at 8:05 pm
How very intersting.
What are the types of tasks within this DTS package?
ActiveX, BulkInsert, Transform Data?
November 18, 2005 at 7:42 pm
One thing that any naming standard needs to consider is the concept of namespace, which define which database objects are within the same uniqueness constraint.
Columns have a namespace where column...
November 18, 2005 at 7:35 pm
Welcome to SQLServerCentral.
Please provide DDL and sample data
Since this is your first post, you should be aware that you will often get responses such as this that state "Please provide...
November 18, 2005 at 7:17 pm
Dang !
When you nest sp_MSforeachtable within sp_MsForEachDb, I get the below message for each database:
Server: Msg 16915, Level 16, State 1, Line 1
A cursor with the name 'hCForEach' already exists.
create...
November 18, 2005 at 7:00 pm
Check for an anti-virus program.
The usual practice is to exclude database files from virus scans which are files with extention *.mdf, *.ndf or *.ldf
November 18, 2005 at 6:29 am
November 18, 2005 at 5:42 am
This is not a threading problem.
'TEMPDB' is the work space for SQL Server and as your process needs more work space than is currently available, the size of the tempdb...
November 18, 2005 at 5:38 am
UTC Seconds, also called Epoch Start Seconds, is the number of seconds since January 1st, 1970, with the local date and time adjusted to the UTC timezone.
declare @EpochStartTs datetime
, @GregorianTs...
November 17, 2005 at 7:42 pm
You could use the SQL Server password encryption routine.
Create table App_users
( auserid - bigint
, ausername varchar(20)
, EncryptedPassword varbinary(256)
)
Then, during the login process with a password, encrypt it and then...
November 17, 2005 at 7:28 pm
"Raid 5 was selected because of cost/GB Using Raid1 or 1+0 cost more since you have to buy 2 drives to get 1 drive worth of capacity. "
If you...
November 16, 2005 at 8:17 pm
Viewing 15 posts - 856 through 870 (of 1,132 total)