Forum Replies Created

Viewing 15 posts - 1,021 through 1,035 (of 1,415 total)

  • RE: bcp error

    The file you have uploaded called EmployeeDataCommaDelimited.csv.txt looks like it should work with the prior bcp command you first tried, AFTER YOU REMOVE THE FIRST LINE FROM YOUR CSV FILE...

  • RE: White Space in fields??

    Just curious, could affected tables with the working database and the database that gets spaces have different ANSI_PADDING settings?

  • RE: SQL Release

    You could script up the 'alter table' update!

  • RE: bcp error

    You could post the updated data file with commas, and the table definition that you're trying to bcp to, and folks might be able to duplicate your error and troubleshoot...

  • RE: bcp error

    Just some possibilities:

    It can depend on the table its getting loaded to and the parameters you have in your bcp command and I don't have adventureworks loaded.

    Some other comments, specifically...

  • RE: Google shutting down SQL Error Searches?

    Brandie Tarvin (10/17/2014)


    And as a bonus, we now know what database engine Google uses on its back end, don't we? EDIT: Well, at least we know it's SQLish, not Oracle...

    Well...

  • RE: The Decline of SQL Server

    Gary Varga (10/3/2014)


    chrisn-585491 (10/3/2014)


    We've got major apps that will only run on certain VERSIONS (forget platforms) of Java and won't even coexist on a machine.

    That's a developer issue that could...

  • RE: The Decline of SQL Server

    emmchild (10/3/2014)


    Microsoft's current lack of a pay as you go strategy is caused this situation. No one wants to incur a massive capital expense for features that they might...

  • RE: The Ins and outs of In-Memory OLTP

    Roy Ernest (9/18/2014)


    Hey Patrick,

    There is an improvement performance. But Interpreted T-SQL does not perform like the compiled stored procedures. In SQL 2014, there was some major work done on the...

  • RE: The Ins and outs of In-Memory OLTP

    Roy Ernest (9/17/2014)


    I strongly recommend not to use cursors. Whether be it on a disk based or a memory optimized. You still have to loop through each row. I am...

  • RE: The Ins and outs of In-Memory OLTP

    Roy Ernest (9/16/2014)


    Hi Gabriel,

    In this version of SQL server, the execution of T-SQL statements does not need require that many instructions to execute it.

    So does this mean that cursors on...

  • RE: Using COALESCE and also trying to multiply and divide

    Luis Cazares (9/11/2014)


    CELKO (9/11/2014)


    The single line is a bouma; a semantic unit read as a whole. My PROGRAMMING STYLE goes into some of the research we collected at AIRMICS on...

  • RE: SQL import data when both source and destination has data and identity column

    Talib123 (9/8/2014)


    Do it via T-sql and set identity insert on

    -- SET IDENTITY_INSERT to ON.

    SET IDENTITY_INSERT products ON

    GO

    It really sounds like he tried this, but in the destination table the...

  • RE: primary key discussion

    CELKO (8/22/2014)


    What do you use for the PK on lookup tables?

    I use the encoding that is being used. The IDENTITY property (not a column!) is the count of insertion...

  • RE: Column Rename

    WILD GUESS!

    I'm thinking that internally to SQL Server, the column is referenced by an ordinal value, like column number. When displaying information about the index to the user in ssms...

Viewing 15 posts - 1,021 through 1,035 (of 1,415 total)