Forum Replies Created

Viewing 15 posts - 8,416 through 8,430 (of 9,643 total)

  • RE: SELECT INTO Brain Glitch

    If you are inserting into an existing table you want this:

    Insert INTO NewDatabase.Customers.tbl_Table

    SELECT AcctID

    , Name

    , Payer

    , Payer_Name

    , Account

    FROM tbl_Customers

    WHERE Account IN (113, 372, 135, 021)

    If you are creating the table...

  • RE: Configuring Database Mail

    You enable database mail using the SQL Server Surface Area Configuration tool for Features. Then in SSMS you configure Database Mail Under the Management section of the server you...

  • RE: How do I reduce or eliminate logging?

    There is no way to eliminate logging. SQL Server writes changes to the Log and then to the database from the log. Changing the recovery mode to simple will...

  • RE: search a string from all columns of a table

    You could do it a couple of ways. You could concatenate all the columns in the table and then use LIKE. You could use "OR". If you...

  • RE: Deadlocks

    David Griffiths (7/11/2008)


    With the greatest respect - I disagree.

    Admittedly I am using SQL Server 2000 so perhaps this is something that has since been resolved. But I work on a...

  • RE: Time out and disconnect from SQL 2005

    Okay, so what is the SQL that is being run in the VB app when it times out?? How long does it take to run in SSMS/QA? What...

  • RE: Scheduled Job Step duration

    You can also set up a server side trace that you can then look at to determine what is going on. My guess is you are sleeping when the...

  • RE: Why so big difference?

    What else is happening on the server when the job is running? Are there other jobs running that access the same resources? Are there backups running?

    Without...

  • RE: Capturing @@rowcount within a Cursor

    bdba (7/11/2008)


    The code is posted just for an example to show how I am trying to capture the @@rowcount to print message whenever 1000 rows updated. There is a lot...

  • RE: Time out and disconnect from SQL 2005

    What is the app written in which is returning the error? Have you looked into the code that they are running when this happens? Sounds like there is...

  • RE: Strange behaviour on simple import from .xls

    I tried creating an excel file with some random dates and could not duplicate what you are seeing. Can you attach a subset of data in Excel?

    Are you using...

  • RE: Stored Procedures in .net

    It looks like you actually named the parameter in the stored procedure @tour instead of @TourID. Either change the stored procedure to use @TourID or change the .NET code...

  • RE: Strange behaviour on simple import from .xls

    Could you post some sample data?

  • RE: An MVP From Way Down South

    Congratulations Gail. I was pleased to see you recognized as well. I always take the time to read any forum threads where I see your name.

  • RE: Congratulations to Our New MVPs

    Congratulations. You both certainly have been contributors to the SQL Server Community.

Viewing 15 posts - 8,416 through 8,430 (of 9,643 total)