Forum Replies Created

Viewing 15 posts - 4,681 through 4,695 (of 8,761 total)

  • RE: Are the posted questions getting worse?

    Sean Lange (8/19/2015)


    I am working on putting together my first SSIS package. I haven't done this type of thing since it was still DTS packages. This stuff is a LOT...

  • RE: Today's Random Word!

    Ed Wagner (8/19/2015)


    djj (8/19/2015)


    Eirikur Eiriksson (8/18/2015)


    DonlSimpson (8/18/2015)


    Revenant (8/18/2015)


    whereisSQL? (8/18/2015)


    TomThomson (8/18/2015)


    Ed Wagner (8/18/2015)


    SQLRNNR (8/18/2015)


    Ed Wagner (8/18/2015)


    ChrisM@Work (8/18/2015)


    djj (8/18/2015)


    Ed Wagner (8/17/2015)


    Luis Cazares (8/17/2015)


    whereisSQL? (8/17/2015)


    Eirikur Eiriksson (8/17/2015)


    Ed Wagner (8/17/2015)


    eccentricDBA (8/17/2015)


    whereisSQL? (8/17/2015)


    DonlSimpson (8/17/2015)


    Optimizer

    Cost-based

    low-cost provider...

  • RE: Today's Random Word!

    DonlSimpson (8/18/2015)


    Revenant (8/18/2015)


    whereisSQL? (8/18/2015)


    TomThomson (8/18/2015)


    Ed Wagner (8/18/2015)


    SQLRNNR (8/18/2015)


    Ed Wagner (8/18/2015)


    ChrisM@Work (8/18/2015)


    djj (8/18/2015)


    Ed Wagner (8/17/2015)


    Luis Cazares (8/17/2015)


    whereisSQL? (8/17/2015)


    Eirikur Eiriksson (8/17/2015)


    Ed Wagner (8/17/2015)


    eccentricDBA (8/17/2015)


    whereisSQL? (8/17/2015)


    DonlSimpson (8/17/2015)


    Optimizer

    Cost-based

    low-cost provider strategy

    Low Quality

    WYPIWYG

    Consultant

    Contractor

    Temp

    Intern

    Affairs

    Politicians

    desk

    Resolute

    pig-headed

    Trump

    Hair

    Ball

    Bearing

  • RE: Help Needed in Relational Logic

    sgmunson (8/18/2015)


    It appears that what's needed is a query that detects differences between the Steps table and the Processes table. How about this rather simplistic one?

    Simple solution but not...

  • RE: Help Needed in Relational Logic

    drew.allen (8/18/2015)


    Why do you use a CROSS APPLY here? You can do the same thing with an INNER JOIN, and I think that it's easier to follow.

    You are right,...

  • RE: Replace String Values - TSQL

    ShuaibV (8/18/2015)


    Hello

    Can you please let me know how we can replace the multiple values in a single select statement? I have to build the output based on values stored...

  • RE: Are the posted questions getting worse?

    TomThomson (8/18/2015)


    Jeff Moden (8/14/2015)


    Eirikur Eiriksson (8/14/2015)


    Jeff Moden (8/14/2015)


    Heh... since it's for XML...

    Trying to put my finger on this, just cannot find which kind of XML phobia is plaguing you Jeff:Whistling:,...

  • RE: Snapshots -never used

    Does creating the snap create a full bak or full mdf and ldf files? Im concerned with space - it's a large DB

    No it initially creates a data file...

  • RE: Help Needed in Relational Logic

    Quick suggestion

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    declare @Process table(ProcessId int identity(1,1) primary key,ProcessName varchar(100),ParentStep int, ChildStep int);

    Insert into @Process(ProcessName,ParentStep,ChildStep)

    select 'Process1',1,2 union all

    select 'Process2',1,3 union all

    select 'Process3',1,6 union all

    select 'Process4',4,2 union all

    select 'Process5',4,5;...

  • RE: Snapshots -never used

    krypto69 (8/17/2015)


    Hi,

    Never had a need to use snapshots before.

    I have a dev SQL2014 server. My devs would like to take a DB snapshot then run there code, then use that...

  • RE: SELECT @@ServerName returns NULL

    Lynn Pettis (8/17/2015)


    Looks like someone ran sp_dropserver.

    Someone should then run sp_addserver

    😎

  • RE: Today's Random Word!

    Ed Wagner (8/17/2015)


    eccentricDBA (8/17/2015)


    whereisSQL? (8/17/2015)


    DonlSimpson (8/17/2015)


    Optimizer

    Cost-based

    low-cost provider strategy

    Low Quality

    WYPIWYG

  • RE: How do I fix this error?

    cory.bullard76 (8/17/2015)


    When I insert the following into my query...I get an error

    ,max(case when patins.rank = 1.0 then CLAIMS.[TOTALPAID] else '' end)

    TotalPaid is a field that contains, for example, 445.45

    The...

  • RE: Aggregation transformation or script task?

    ilovedata (8/16/2015)


    I have a source from which I select the AccountID, StatusID, and value. I am using an aggregation Transform to find the SUM(Value) GROUP BY AccountID, StatusID.

    I will have...

  • RE: SQL Joins Question

    Jeff Moden (8/16/2015)


    Eirikur Eiriksson (8/16/2015)


    Jeff Moden (8/16/2015)


    Gosh, I'd be real careful here, Eirikur. While your good code certainly does what was asked, it will fail if table SampleData2 is...

Viewing 15 posts - 4,681 through 4,695 (of 8,761 total)