Forum Replies Created

Viewing 15 posts - 1,051 through 1,065 (of 1,241 total)

  • RE: Client does not want to pay overtime. How to deal with it ?

    This issue may have more than meets the eye. Depending on the exact work that you do and the money you make, the company may be able to say you...

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

  • RE: Launching a Report from the URL link

    You can create a data driven subscription for the user. Here you can define the report parameters and the report generates based on those and emails itself to the user,...

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

  • RE: GetDate() 5 Years ago without time formated 'YYYY-MM-DD'

    Right. It seems intuitive. I've found that has not always been the case with my queries.

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

  • RE: Where is Left table in Left Join ???

    I hope I dont confuse you here :

    Select T1.C1, T2.C2

    From T1 Left join T2

    on T1.C1 =. T2.C2

    is equivalent to

    Select T1.C1, T2.C2

    From T2 Right join T1

    on T1.C1 =. T2.C2

    The...

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

  • RE: GetDate() 5 Years ago without time formated 'YYYY-MM-DD'

    Create a date variable , assign the value of CONVERT(DATE, DateAdd(yy, - 5, GetDate())) to the variable and use the variable instead in your query. This may be more...

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

  • RE: SSIS job failing intermittently, connectionmanager failing

    It also only fails when running from SQL agent, never fails from BIDS.

    Just to be sure, is the config file with the user credentials stored in the same directory as...

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

  • RE: SSIS job failing intermittently, connectionmanager failing

    I concur with opc.three comment above. Are the package, job on different machines? What about the target server of the ole db connection ?

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

  • RE: Running Dynamic SQL

    Have you considered using the SSIS execute sql task? You can map parameters to it. If you need to do many somewhat independent things as a batch, add them as...

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

  • RE: An issue with my Execution plan

    Will do Gail, appreciate your help. Thanks

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

  • RE: confused With View , Function and Store Procedure

    A stored procedure and a view will both return you a result set. A stored procedure can accept parameters, such as start date and end date... whereas a view cannot....

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

  • RE: An issue with my Execution plan

    Hi Gail. I hope I don't trouble you if you could post this example you mention? I have not dived deeply into the subject of execution plans and am curious...

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

  • RE: More help wit Sum, Pivot and so on...

    How would using the sign function fit here? I don't think you can have a negative average of dropped calls.

    thanks

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

  • RE: SSRS 2005 Parameter validation

    I would just add that if a start date is greater than an ending data, there should be no data returned. The user will get the point sooner or later,...

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

  • RE: Select full month number (with 0)

    gmac 41947 (3/1/2013)


    Hi,

    I use

    DATEPART(month, myDate)

    or

    MONTH(myDate)

    the resut is: 2 (if myDate is 2013.02.03). I would like return: 02

    Do you have any solution for this?

    Thans!

    try this

    declare @MyDate datetime

    set @mydate= '20130301'

    select replicate...

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

  • RE: Google Analytics SQL Import

    I installed this and works fine so far. No special tweaking needed. It looks like a fine tool. Thanks for the link Anthony.

    Cheers

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

Viewing 15 posts - 1,051 through 1,065 (of 1,241 total)