Viewing 15 posts - 37,561 through 37,575 (of 39,456 total)
I believe the query for xp_sendmail must be a statement(s) that returns a single result set. You are attempting to output messages witht the print statement, whcih is not the...
April 19, 2002 at 10:07 am
You just pass it in as a varchar.
create procedure MyPRoc
@MyParam varchar(100)
as
select @MyParam
return
go
declare @c varchar( 100)
select @c = '1,2,3,4,5'
exec MyPRoc @c
Steve Jones
April 19, 2002 at 9:56 am
You have the wrong password for the service. Login failed means the service tried to login and could not. Check this in Control Panel | Admin Tools | Services |...
April 18, 2002 at 2:26 pm
Not sure what you mean. Do you mean that you need to know what you need to know? Or what you need to hire someone (temp or perm) to do?
You...
April 18, 2002 at 2:23 pm
I do not believe this is stored. The current session is as long as you are connected with isql. When you "quit" of disconnect, the password is not stored any...
April 18, 2002 at 10:21 am
I'd drop them to the local drive and then ship them. SQL Zip will work, also you can use my PushFTP process. Been using it for months and had to...
April 18, 2002 at 10:12 am
most people only send mail, they do not receive it. If you do this, there is no virus infection. If you read mail, I believe Antares is correct, but I...
April 17, 2002 at 3:59 pm
Log things from teh DTS pacakge. Either use the logging of the tasks, of write an ActiveX task to help.
Then run findstr from your batch file on the log file...
April 17, 2002 at 12:46 pm
In a similar situation we added a column to tables that need logging and insert/update this column with the userid from the sproc. If this column is not updated or...
April 17, 2002 at 12:45 pm
Can you backup to disk? Try a simple backup of master to disk and see what happens.
If this works, try a manual backup of master to tape and see what...
April 17, 2002 at 12:42 pm
Agree with Jordan. I don't like running this on servers for a variety of reasons. Set a strong administrative policy that people should not be running browsers, etc. on servers,...
April 17, 2002 at 12:38 pm
Agree with jgee. I import into a table that duplicates the setup on the main table.
Then I update the main table from the import using the PK as a match...
April 17, 2002 at 9:18 am
Have you logged in as the sql server account and successfully sent mail using iNotes? Be sure this profile is the default profile and Outlook is not set to ask...
April 17, 2002 at 9:12 am
Just like multiple physical disks enhance performance, multiple controllers can as well because the load can be spread.
I agree with Andy' suggestions and don't know which is best. Compaq and...
April 17, 2002 at 9:06 am
Viewing 15 posts - 37,561 through 37,575 (of 39,456 total)