Forum Replies Created

Viewing 15 posts - 841 through 855 (of 920 total)

  • RE: Major Tangents

    '95 Nissan Pickup ( but I'd really like to have my 1972 Gremlin back).


    And then again, I might be wrong ...
    David Webb

  • RE: Annoying behavior importing csv file into SQL Server

    I agree.  The 'FIRSTROW' setting should take care of this.  I know it works in DTS, but it seems to have caused multiple people grief trying to do it the...


    And then again, I might be wrong ...
    David Webb

  • RE: Annoying behavior importing csv file into SQL Server

    Deja Vu!

     

    This question has been asked here before.  Here's a link to a thread with a script to strip the header line off a file.

    http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=19&messageid=105041

    HTH

     


    And then again, I might be wrong ...
    David Webb

  • RE: Annoying behavior importing csv file into SQL Server

    Have you tried adding FIRSTROW=2 to the BULK INSERT command?  I don't have a system to try it on, but it might skip the header.


    And then again, I might be wrong ...
    David Webb

  • RE: More Alternative Energy

    Maybe we'll find out that the best biomass fuel can be made with tobacco.  If the tobacco companies figure out they can replace the oil companies, we may be able...


    And then again, I might be wrong ...
    David Webb

  • RE: MY SP IS GOING NUTS!!

    How are you calling the proc?

    If you put a 'select @intPlId ' at the beginning of the proc, does the integer argument show up as you expect it to?

    What is the...


    And then again, I might be wrong ...
    David Webb

  • RE: BCP problem

    Try -t\t

     


    And then again, I might be wrong ...
    David Webb

  • RE: Using one database for multiple applications

    My personal preference is to think about a database as a related colletion of data, having nothing to do with the applications that touch it.  It's been my experience that...


    And then again, I might be wrong ...
    David Webb

  • RE: Renaming a table

    Is there another object in the database already named ProductRestrictions (proc,view,trigger,...)?  That's the only reason I can think of that it might accept one name but not the one you...


    And then again, I might be wrong ...
    David Webb

  • RE: Returning result set via Stored Procedure

    When you do

    select column_name

    it returns the data to you.

     

    When you do

    select @variable = column_name

    it puts the data from the column into the variable, but it doesn't return data to a...


    And then again, I might be wrong ...
    David Webb

  • RE: After attached with sp_attach_single_file_db,the database is still offline at times

    How busy is the server?  How much activity was there on the attached database?  If the attached database is trying to run through recovery and the activity level has been...


    And then again, I might be wrong ...
    David Webb

  • RE: xp_sqlmaint unable to log in

    Does the failure happen before the plan executes (does the backup complete)?  I have seen instances where it's the notification that has the id problem, not the plan itself, and...


    And then again, I might be wrong ...
    David Webb

  • RE: xp_sqlmaint unable to log in

    What authentication mode is the server set for (SQL, Windows, mixed)?


    And then again, I might be wrong ...
    David Webb

  • RE: Query Analyzer execute queries on the Client or Server?

    Your machine sends the SQL to the server to be executed.  The optimization and data retrieval happen at the server.  If you unplug from the network, you can't run the...


    And then again, I might be wrong ...
    David Webb

  • RE: Help with DBCC Results

    For a table this small, I'd script the table, indexes, and triggers then drop the indexes and triggers, copy out the data, rebuild everything and reload the data.

     

    The errors on...


    And then again, I might be wrong ...
    David Webb

Viewing 15 posts - 841 through 855 (of 920 total)