Viewing 15 posts - 9,541 through 9,555 (of 9,641 total)
I have to agree with Kevin. Particularly because if xp_sendmail fails your whole transaction will be rolled back. Put changes in an audit table. Then you also have the ability...
April 14, 2004 at 6:49 am
I'm not sure what changes SP4 made, but just because auto create and auto update stats are on does not mean you have the correct stats as SQL Server just...
April 8, 2004 at 7:29 am
I would guess that when SP4 was applied you would need to update the statistics. Have you checked the query plan?
April 6, 2004 at 7:18 am
You definitely wnat a FULL recovery model. This allows you to do FULL, DIFFERENTIAL, and LOG backups. For heavily updated databses I do a weekly full backup, Differential backups about...
April 1, 2004 at 10:53 am
I don't a need for you to have a separate table for AIlment and Appointment as you already have those 2 keys in the Appointment table. That would be storing...
April 1, 2004 at 7:10 am
Size of the log file definitely affects performance. The log file should be around 20% of the database size. A 1GB databse should not have a 14GB transaction log. Have you...
April 1, 2004 at 7:00 am
I think you need to use a command objec tin order to execute a stored procedure in ADODB. Try adding this:
Dim cmd
Set cmd = CreateObject("adodb.command")
cmd.ActiveConnection = cn
cmd.CommandType = adCmdText
...
March 31, 2004 at 7:39 am
I downloaded Toad for Sql Server and was not impressed with the interface, but it does have a lot of features. I also tried msSqled which is excellent. You can...
March 30, 2004 at 2:57 pm
If you are using SQL2K I would use an instead of trigger on table A IT would look something like this:
CREATE TRIGGER
InsteadTrigger on
March 30, 2004 at 7:51 am
You cannot use like with an integer value is one problem I see. You are comparing BLOCK Like @BlkId which is int so that is not going to work. Then...
March 29, 2004 at 3:30 pm
based on my experience you are out of luck in SQL 7. In SQL2K you would probably want to use Inline Functions which return a table based on the select...
March 29, 2004 at 3:14 pm
MY guess is that the connection string defined for the shared data source is wrapped in double quotes (") when passed to the web service so having the double quote in...
March 29, 2004 at 3:01 pm
I used Visual Interdev 6 and now use Visual Studio .NET 2003. I like the environment.
March 29, 2004 at 2:55 pm
Could you post the entire sp that is giving you the error? It is hard to tell what the problem could be from the snippets you have provided.
March 29, 2004 at 2:53 pm
Both boxes are int the same domain. The SQL Server is running under a Domain account and allows both SQL and Windows logins. I have tried setting up the RS...
March 26, 2004 at 7:10 am
Viewing 15 posts - 9,541 through 9,555 (of 9,641 total)