Forum Replies Created

Viewing 15 posts - 6,181 through 6,195 (of 7,608 total)

  • RE: Need help with runaway query using multiple APPLY joins

    I think you can simplify the query something like below, although some tweaking might need done:

    SELECT

    s.state_name,

    derived.NumOfDupPermits, derived.AmendedDups, derived.DistinctPermits

    FROM (

    ...

  • RE: GUID Pirmary key

    andrew gothard (3/27/2014)


    ScottPletcher (3/27/2014)


    yuvipoy (3/27/2014)


    Sean Lange (3/27/2014)


    True. I have worked with this OP on several threads and the problem is performance because they have several related tables and the primary...

  • RE: Restore compressed backup creates 5x larger database

    I restore the backup to my UAT server and the initial data size explodes to 53gb and the log is set to 1gb.

    Hmm, I think the log file should...

  • RE: GUID Pirmary key

    yuvipoy (3/27/2014)


    Sean Lange (3/27/2014)


    True. I have worked with this OP on several threads and the problem is performance because they have several related tables and the primary key (and clustered...

  • RE: Adding dummy values

    I think you're looking for LEFT OUTER JOIN, something like this:

    SELECT

    c.CaseID, c.Resolution,

    COALESCE(CAST(s.CaseID AS varchar(10)), 'DUMMY-' + c.Resolution) AS SubCaseID

    ...

  • RE: Specific Sprocs vs general get all sprocs

    I don't see any need for a pre-built proc for:

    Get All of Foo

    Just SELECT the columns you need from the table instead.

    For the rest, if you're willing to use dynamic...

  • RE: Tempdb is full for Large Table Joins

    Based on the query plan, I think two these things 100% need done and should help:

    1)

    Table: SubOrderTrans

    Index: idx_subordertransday

    INCLUDE column SubOrderTransDeleted in that index

    2)

    Table: SUBORDER_ETA_CORRECTIONS

    Index: IDX_NC_SubOrderID

    Change it to a clustered index,...

  • RE: Retrieve last 7 days date question

    Current query is not SARGable and is somewhat convoluted as well.

    SELECT DISTINCT TOP 7

    Convert(DateTime, Datediff(Day, 0, DateCreated)) AS DateCreated,

    Datepart(dw,DateCreated) AS WeekNum...

  • RE: Tempdb is full for Large Table Joins

    Grant Fritchey (3/25/2014)


    ScottPletcher (3/25/2014)


    Grant Fritchey (3/25/2014)


    ScottPletcher (3/25/2014)


    Grant Fritchey (3/25/2014)


    I can't see the query since it exceeds the size of what's stored in the plan, so suggestions from the plan alone...

  • RE: Working with stored text file in TSQL

    Roughly like below. You may have to adjust the "SINGLE_NCLOB" to "SINGLE_CLOB", depending on the format of the input file.

    DECLARE @file_text varchar(max)

    SELECT @file_text = file_text

    FROM OPENROWSET(BULK 'd:\full\path\to\file\filename.txt', SINGLE_NCLOB) AS...

  • RE: Working with stored text file in TSQL

    Gotta' admit, I prefer working in SQL/TSQL, so even for (moderately) large text files I'll often just do an:

    OPENROWSET(BULK '<path_and_file_name>', SINGLE_CLOB) --or NCLOB, if req'd

    to load the whole file at...

  • RE: Tempdb is full for Large Table Joins

    Grant Fritchey (3/25/2014)


    ScottPletcher (3/25/2014)


    Grant Fritchey (3/25/2014)


    I can't see the query since it exceeds the size of what's stored in the plan, so suggestions from the plan alone are going to...

  • RE: Tempdb is full for Large Table Joins

    Hard to provide more details without the rest of the query and with no index info on the tables.

    Edit: Looks like a covering index is needed on SubOrderTrans at least,...

  • RE: Tempdb is full for Large Table Joins

    Grant Fritchey (3/25/2014)


    I can't see the query since it exceeds the size of what's stored in the plan, so suggestions from the plan alone are going to be a bit...

  • RE: Help me optimise this query

    Best guess with what's known so far:

    Create an index on "order":

    key = ( claim_id ); include = ( order_id, created_dtm )

Viewing 15 posts - 6,181 through 6,195 (of 7,608 total)