Forum Replies Created

Viewing 15 posts - 7,666 through 7,680 (of 8,753 total)

  • RE: what do rows were affected mean

    That is a fair guess as the after trigger execution is appended to the insert statement in the execution plan.

    😎

  • RE: Today's Humor..

    Luis Cazares (7/30/2014)


    Alvin Ramard (7/30/2014)


    WAIT!!!! What kind of database MUST be repaired regularly???? :w00t:

    The one that is shrinked regularly?

    Guess shrinked is the simple mode and shrunken is the...

  • RE: what do rows were affected mean

    First suggestion is to set NOCOUNT ON to eliminate the unnecessary network traffic.

    The message can be from a select / update / insert / delete within the code, even "select...

  • RE: Today's Humor..

    Flash from the Access database passed :sick:

    😎

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor (7/30/2014)


    Lynn Pettis (7/30/2014)


    It should be noted as well, that sometimes people come to SSC and ask question(s) and then actually get upset when we try...

  • RE: sp_send_dbmail question

    Quick suggestion, if you are on SQL 2012 or later, use the concat function.

    😎

    DECLARE @recordcount INT = 007;

    DECLARE @mysubject varchar(500) = CONCAT('Number of unprocessed records on SQL1 ',@recordcount);

    SELECT @mysubject;

  • RE: Are the posted questions getting worse?

    Sean Lange (7/30/2014)


    Koen Verbeeck (7/30/2014)


    Anyway, if this SO discussion is going to endure any longer, we will reach 45,000 posts real quick 😀

    No kidding. I sure opened a can of...

  • RE: T-SQL to add 7 days to ship date

    Somehow messed up the order of the days, here is the correct code

    😎

    USE tempdb;

    GO

    DECLARE @Date DATE;

    /*SET @Date = GETDATE();*/

    SET @Date = '2014-08-07';

    DECLARE @TEST_DATA TABLE

    (

    DT_ID INT ...

  • RE: How to Reduce the Table Size...

    Koen Verbeeck (7/30/2014)


    Chowdary's (7/30/2014)


    Dear Eirikur Eiriksson,

    How can i claim my space from that table without doing Compress, Can you pls give me some suggestions..

    Regards

    Chowdary....

    Why is compression not an option? Because...

  • RE: How to Reduce the Table Size...

    Chowdary's (7/29/2014)


    Hi All,

    Am using 2008 Sql server.

    In my database one of the table containing 20gb of data.I need to check that table means what are the data updated and...

  • RE: Disable Unicode output

    michael_alawneh (7/29/2014)


    None of the queries are XML. Simple selects just outputting as file.

    SET NOCOUNT ON

    SELECT Blah

    , Blah

    FROM dbo.tblBlah

    If it's a default for the UTF-8 format I'm...

  • RE: T-SQL to add 7 days to ship date

    amolacp (7/29/2014)


    Apologies for reposting the above question. I was not able to see the post after refreshing the page that's why I ended up posting multiple times.

    No worries, I think...

  • RE: Disable Unicode output

    Quick question, the query used for this wouldn't by any chance have a FOR XML statement in it? What you are seeing there is the UTF-8 BOM or Byte Order...

  • RE: Bulk Insert

    Here is a quick solution, more generic than using a specific format file for the import.

    The first part is a CSV splitter function which is based on Jeff Moden's...

  • RE: HI...Sample INSERT statement script needed to insert 500 million rows into in-memory table sql server 2014

    v4vaas 19815 (7/29/2014)


    Hi, I am doing a performance testing for In-memory option is sql server 2014. As a part I want to insert 500 million rows of records into a...

Viewing 15 posts - 7,666 through 7,680 (of 8,753 total)