Viewing 15 posts - 16 through 30 (of 123 total)
Suggest using XPSMTP instead. See
April 25, 2008 at 4:15 pm
Going back to your original example - if you wanted an error if a table doesn't exists I would do somethin like this:
DECLARE @intErrorCode INT
IF OBJECT_ID('AdventureWorks.Person.AddressX') IS NULL
BEGIN
PRINT 'Table...
April 17, 2008 at 4:57 pm
do you have a sample update statement?
April 17, 2008 at 1:59 pm
Have you tried BEGIN TRY....
Oops - just realized this is a 2000 forum - nevermind
April 17, 2008 at 1:45 pm
1) Create a trigger. See Books On Line - it is very easy to follow
2) Create a stored procedure and have it run as a SQL Server Agent job...
April 17, 2008 at 1:25 pm
I belive you can only install Developer or Enterprise evaluation on XP. Which version are you trying to install?
April 17, 2008 at 1:21 pm
Set is recommended over select according to BOL.
April 17, 2008 at 1:17 pm
Jason didn't mention "ArithAbort."
Try SET NUMERIC_ROUNDABORT OFF
April 16, 2008 at 12:54 pm
Can't you just change the password? I have no knowledge of 6,5.
April 16, 2008 at 12:41 pm
Draft the CREATE TABLE and INSERT statements so I can test on my machine. Set your question up for success.
April 16, 2008 at 12:37 pm
Is there more than one instance on the box?
April 8, 2008 at 9:01 pm
When you say "prepared statements" do you mean ad hoc queries? If so, the stored procedure is better. Security: By using only stored procedures you can avoid...
January 29, 2008 at 12:12 am
Viewing 15 posts - 16 through 30 (of 123 total)