Forum Replies Created

Viewing 15 posts - 3,061 through 3,075 (of 8,761 total)

  • RE: migrating sql server 2005, 2008 and 2012 to 2014 on new server new storage

    Looks fine to me, normally I script transferable logins from the source and after attachment then run the scripts on the destination.

    😎

    Quick question out of curiosity, why SQL Server 2014...

  • RE: Split String On Delimiter

    ScottPletcher (10/14/2016)


    Here's a simple, brute-force -- but still no looping -- method, if you prefer that.

    Not very efficient with 7 x ( source scan -> Filter -> Compute Scalar ->...

  • RE: xml encoding utf-16 not working in sqlserver

    rajemessage 14195 (10/15/2016)


    my question was some thing else , that is with out N it is working.

    now u have written N which is also good , but i am trying...

  • RE: ETL REWRITE

    karthiknfr_1991 (10/14/2016)


    We have access etl running on server A and B. We are going to decommission server A . There is another as400 server where we run lansa queries...

  • RE: Dynamically checking for columns and update

    hegdesuchi (10/14/2016)


    Hi All,

    I have to update target table and I am good with below logic.

    MERGE testdb.dbo.targettable r

    using dbo.sourcetable s

    on s.id=r.id

    ...

  • RE: executing SP with Output parameters

    Quick guess, the GUI has SET ANSI_WARNINGS OFF while SSMS has SET ANSI_WARNINGS ON

    😎

  • RE: Query Performance

    mitzyturbo (10/13/2016)


    Exec plan attached

    I'm wondering if this might be combination of using the <= operator in the inner join along with using a temp table which might be throwing the...

  • RE: Query Performance

    Can you post the actual execution plan for the query?

    😎

  • RE: update trigger get fields before and after update

    Further on Jeff's fine reply, here is an example of "Generic" table auditing with few extras for education and entertainment.

    😎

    USE TEEST;

    GO

    SET NOCOUNT ON;

    /*

    --------------------------------------------------------------------------------------------------------------------------

    Name: ...

  • RE: Agent Job

    How large is the dbo.sysjobhistory table in msdb? Seen similar on the same version/patch level when the table grows huge.

    😎

  • RE: How to pass values in the code

    This looks entirely wrong to me, two instances of a parameter object with the same name in the same scope, using parameters in non-parameterized code, no command is executed. My...

  • RE: Are the posted questions getting worse?

    BLOB_EATER (10/12/2016)


    Eirikur Eiriksson (10/12/2016)


    BLOB_EATER (10/12/2016)


    Hi guys, is anyone willing (and kind enough) to review a post I am doing on SQL Memory? Basically I want to talk about total vs...

  • RE: Are the posted questions getting worse?

    BLOB_EATER (10/12/2016)


    Hi guys, is anyone willing (and kind enough) to review a post I am doing on SQL Memory? Basically I want to talk about total vs target and show...

  • RE: Agent Job

    Quick question, what is the full output of SELECT @@VERSION

    😎

  • RE: SQL Export to CSV Problem

    Not clear what the problem is here, can you elaborate further?

    😎

Viewing 15 posts - 3,061 through 3,075 (of 8,761 total)