Viewing 15 posts - 1,486 through 1,500 (of 2,486 total)
Are your parameters setup to allow nulls?
February 23, 2005 at 4:11 pm
The SCOPE_IDENTITY() returns the username of the person instead of the UserID which is created when a new record is entered.
I don't understand this. SCOPE_IDENTITY() returns the last IDENTITY...
February 23, 2005 at 4:01 pm
As Helen mentioned, just because you have two CPU doesn't mean that they will be used by SQL Server every time. If the DB engine determines that it can accomplish...
February 23, 2005 at 3:46 pm
I don't understand your requirements for having different databases. Maybe you should explain your overall process a bit more.
In SQL Server having 100 scripts is by no means a lot....
February 23, 2005 at 3:42 pm
I don't see any need for seperate databases.
One of the main reasons for not putting information in different databases would be data integrity. You can't define foreign key constraints for...
February 22, 2005 at 10:55 pm
Just specify the destination directory without the filename.
EG: exec master.dbo.xp_cmdshell N'xcopy D:\testing\testbat.bat D:\testing\DTS'
February 22, 2005 at 10:33 pm
Instead of just returning the UserID by using @@IDENTITY. Assign the value to a local variable and the execute another INSERT statement with the new value.
Also, to avoid and multi-user and scope...
February 22, 2005 at 10:22 pm
SQL Server Developer Edition is equivalent to Enterprise Edition.
For details on the different editions take a look at this document from the resource kit,
http://www.microsoft.com/sql/techinfo/planning/SQLReskChooseEd.asp
February 22, 2005 at 5:05 pm
How do you insert the information into the Users table? If you use a stored proc, you can add an insert statement, or call another stored proc, after the insert...
February 22, 2005 at 3:39 pm
Is the error during the full backup or transaction log backup?
If it's the transaction log backup, check the recovery model of the databases that fail. You can't do transaction log...
February 22, 2005 at 3:33 pm
That's what it seems like, although I've never implemented anything like that. My way of thinking is that the errors collection is for errors, not informational messages.
If I have...
February 22, 2005 at 3:28 pm
You will need to have the appropriate DLL's etc... in order to run DTS. From memory, I think that there is a list over a http://www.sqldts.com
Bear in mind that DTS...
February 22, 2005 at 3:17 pm
Ok, this is the fourth discussion thread all about the same thing,
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=6&messageid=161763
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=161765
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=162099#bm162479
If you didn't get the answer you wanted in those other threads, why not post to the...
February 22, 2005 at 3:08 pm
The double FROM syntax is a T-SQL extension to the ANSI standard. The ANSI standard only provides for specifying criteria in the WHERE clause of a DELETE statment. That probably...
February 22, 2005 at 2:45 pm
I don't recall anything that shows different database limitations between SQL Standard and Enterprise.
However, I'd say with the 2 GB memory limitation in SQL Standard, you're likely to run into performance...
February 21, 2005 at 11:46 pm
Viewing 15 posts - 1,486 through 1,500 (of 2,486 total)