Viewing 13 posts - 46 through 58 (of 58 total)
Alternatively xp_sendmail can be used to send an email to anyone that can be resolved by the integrated mail services.
June 13, 2003 at 3:55 am
A net send message can be sent to a user who is connected to MSSQLServer, by using enterprise manager. Look under management, current activity, process info, and then right click...
June 13, 2003 at 3:44 am
OOOps, was supposed to reply and became a new topic. Code 18 i guess.
June 12, 2003 at 4:25 pm
Not as far as i know. This is one of the reasons why MS recommend that Windows authentication is used - more protection.
I guess that you could run a...
June 12, 2003 at 4:24 pm
There are often problems with the MAPI profiles, even when they have been set up correctly. You must log on to the server with the accout that is being used...
June 12, 2003 at 4:14 pm
ALTER DATABASE [msdb] SET RECOVERY Full
This will change the recovery model.
June 12, 2003 at 4:09 pm
This will return the players in order of the number of points they have attained, assuming that player can be used to join the tables.
select player,sum(points) 'Sum of points'
from tbl1.player...
June 12, 2003 at 2:23 pm
The database users should expect to having their work load and activities traced. i think that it is always a good idea to keep a track of what is going...
June 12, 2003 at 6:59 am
You could consider calling the procedure from a loop, and then using a variable to determine the values being used. Lots of overhead for the server, since loads of results...
June 12, 2003 at 6:42 am
You could consider calling the procedure from a loop, and then using a variable to determine the values being used. Lots of overhead for the server, since loads of results...
June 12, 2003 at 6:42 am
Check with profiler that the SQL code you think is being passed to SQL Server is the code that is actually being sent to SQL Server from the asp page.
Also,...
June 12, 2003 at 6:27 am
You could consider using the triggers to perform the remote updates. To do this you can look at building distributed transactions to perform the actual updates. Remember to set xact_abort...
June 12, 2003 at 6:05 am
Viewing 13 posts - 46 through 58 (of 58 total)