Viewing 15 posts - 856 through 870 (of 1,131 total)
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.
SQL = Scarcely Qualifies as a Language
November 19, 2005 at 9:12 am
Is the ODBC defined as a SYSTEM or a USER DSN ?
SQL = Scarcely Qualifies as a Language
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...
SQL = Scarcely Qualifies as a Language
November 18, 2005 at 8:05 pm
How very intersting.
What are the types of tasks within this DTS package?
ActiveX, BulkInsert, Transform Data?
SQL = Scarcely Qualifies as a Language
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...
SQL = Scarcely Qualifies as a Language
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...
SQL = Scarcely Qualifies as a Language
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...
SQL = Scarcely Qualifies as a Language
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
SQL = Scarcely Qualifies as a Language
November 18, 2005 at 6:29 am
See the post at
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=23&messageid=135329
SQL = Scarcely Qualifies as a Language
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...
SQL = Scarcely Qualifies as a Language
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...
SQL = Scarcely Qualifies as a Language
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...
SQL = Scarcely Qualifies as a Language
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...
SQL = Scarcely Qualifies as a Language
November 16, 2005 at 8:17 pm
Only if you have explicitly started a transaction.
For example, to transfer $1000 from one account to another account, you might write:
Update account set balance = balance - 1000
where AccountId =...
SQL = Scarcely Qualifies as a Language
November 16, 2005 at 7:47 pm
Viewing 15 posts - 856 through 870 (of 1,131 total)