Forum Replies Created

Viewing 15 posts - 9,541 through 9,555 (of 9,641 total)

  • RE: Trigger on insert to email last insert to exchange address

    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...

  • RE: SQL Server 7.0 and Service Pack 4 is Slow

    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...

  • RE: SQL Server 7.0 and Service Pack 4 is Slow

    I would guess that when SP4 was applied you would need to update the statistics.   Have you checked the query plan?

  • RE: Speed Issues

    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...

  • RE: data architecture

    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...

  • RE: Speed Issues

    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...

  • RE: DTS to Non-Standard Flat File

    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

       ...

  • RE: Development IDE for SQL2K - suggestions?

    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...

  • RE: Trigger

    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

  • RE: Calculating queries

    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...

  • RE: SELECT INTO with stored procedure result set?

    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...

  • RE: SQL Server Reports Connection Password Problem

    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...

  • RE: Development IDE for SQL2K - suggestions?

    I used Visual Interdev 6 and now use Visual Studio .NET 2003.  I like the environment.

  • RE: join on a table variable

    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.

  • RE: RS Install connecting to remote SQL Server

    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...

Viewing 15 posts - 9,541 through 9,555 (of 9,641 total)