Forum Replies Created

Viewing 15 posts - 4,351 through 4,365 (of 8,731 total)

  • RE: Designing Query

    Note that UNION will remove any duplicates. To avoid this problem and receive a possible performance improvement, use UNION ALL.

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Machine needs for developing and running sql

    Why would you have a 100GB database in a developer workstation?

    I agree that improving the query would help. As you say that you can't at this moment, you should start...

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Multiple SQL version support

    Databases don't have backward compatibility. Once you restore or attach a database to a version of SQL Server, you can't restore it or attach it on a previous version.

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Changes Needed

    Are you seriously asking how to change the query to return 1 day instead of 14? Do you even know how does your query work?

    Also, I'm not sure what you...

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: How to Recover Database without Backup

    Eric M Russell (8/20/2015)


    Hopefully there hasn't been much action on the server, since the database has been offline.

    Well, considering that it has been 6 years now since the "accidental...

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Display the output of table in given format

    dineshhp (8/20/2015)


    Thanks Luis !!! You have solve my problem.....

    That's great! Do you understand how or why does it work?

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: how to overcome from the tempdb spill over ?

    squvi.87 (8/20/2015)


    PFA execution plan with new spliter

    Where?

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Wildcard Searches

    I submitted the article, I'm not sure if it is what you had in mind or if I should have taken a different approach.

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: how to overcome from the tempdb spill over ?

    Have you replaced the splitter?

    Can you share the execution plan and performance results with the new splitter?

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: how to overcome from the tempdb spill over ?

    Ed Wagner (8/19/2015)


    4. The subquery in the JOIN to dbo.BenefitPlanDeterminant. Needs DDL and data to test this. Given the subject, I know that can't happen.

    If you refer to this...

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Today's Random Word!

    Revenant (8/19/2015)


    ZZartin (8/19/2015)


    whereisSQL? (8/19/2015)


    BL0B_EATER (8/19/2015)


    Ed Wagner (8/19/2015)


    djj (8/19/2015)


    whereisSQL? (8/19/2015)


    Luis Cazares (8/19/2015)


    BL0B_EATER (8/19/2015)


    Ed Wagner (8/19/2015)


    BL0B_EATER (8/19/2015)


    crookj (8/19/2015)


    Ed Wagner (8/19/2015)


    Ed Wagner (8/19/2015)


    djj (8/19/2015)


    Eirikur Eiriksson (8/18/2015)


    DonlSimpson (8/18/2015)


    Bearing

    Grease

    Seal

    Approval

    Process

    Procedure

    medical

    Costs

    cash

    Johnny

    Country

    Living

    Well

    Water

    Conservation

    Fire

    Alarm

    Clock

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Ideas???

    Or this:

    declare @myDate datetime;

    set @myDate = cast(dateadd(day, -1, getdate()) as date);

    SELECT *

    FROM [ThomasSci].[dbo].[tsi_gdserial_vw]

    where date_shipped >= @myDate

    AND date_shipped < DATEADD( dd, 1, @myDate)

    order by

    order_no desc,

    ...

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Are the posted questions getting worse?

    Or you could do it directly in SSIS

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • RE: Looping through XML data and replace words with table values using SQL

    Use the REPLACE() function.

    This response is intentionally vague to match the vague requirements posted.

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2
  • 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...

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2

Viewing 15 posts - 4,351 through 4,365 (of 8,731 total)