Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)

  • RE: Query test for just date of smalldatetime

    You can put the Convert into the join expression to evaluate simply based on the day instead of the day-time initiallly represented by a smalldatetime value...

    Declare @Dateparm smalldatetime

    Set @dateparm =...

  • RE: manually copy database

    SQL Server doesn't come with very good tools to do this....

    If the database(s) is not too large you could script out the DB structure (generate SQL script, including the create DB...

  • RE: Access 2002 Project Timeout to SQL Server

    If the in-house users are not having any problems, I would first verify if the "timeouts" the remote users are getting are truly Access timeouts. Try to replicate the error over your...

  • RE: Running DTS Package from Stored Procedure

    Use xp_cmdshell...it's much easier than using the sp_OA procs...

    ciao ciao

  • RE: Updating DTS Package.

    Eoin,

    I'm afraid that it is not possible to go back via the GUI and comprehensively update the columns selected in your DTS packages without doing it one by one.

    Do...

  • RE: Long, complicated problem (SQL Svr 7)

    Are you saying that you are supposed check the CRM system to find out if the attributes of the product you sold match the attributes of the product you put...

  • RE: Long, complicated problem (SQL Svr 7)

    First, I should say that I can't endorse the use of cursors, but that is really a 'do as I say and not as I do' sort of thing. Second,...

  • RE: 40 million records big problem

    1. Make sure the table has an appropriate clustered index...this will physically order the records and greatly increase query performance. This site has plenty of good pointers on indexing...search for...

  • RE: Update XML string passed as a parameter to SP

    You need to identify the event that will flag an insertion as a success or a failure. This could be by using @@RowCount (telling you how many records were affected...

  • RE: DTS: Oracle to SQL 2000--Speed

    Honestly, I think the DTS method is more complex (and clearly slower) than it needs to be. I pull alot of data over from Oracle into SQL 2000, and this...

Viewing 10 posts - 1 through 10 (of 10 total)