Forum Replies Created

Viewing 9 posts - 16 through 24 (of 24 total)

  • RE: Merge Join Question

    Thank you sir! Lookup worked.

  • RE: Insert Into Question

    Thanks Top Hand! but I guess my example was bad... so this is what I have in my excel imported table:

    [Contract Start Date] | [Contract End Date] | [Remaining Month]...

  • RE: Need some advice on BI programming

    Another question. I am thinking of attending one of these 5 day BI boot camp class. How are these classes? Worth it?

  • RE: Need some advice on BI programming

    thank you all for your advice!

  • RE: Can you recover data from transaction log?

    Thank you all again.

    As for the transactions, it is more of an old data import rather than live transaction.

    Problem is when we imported those old transaction date, it...

  • RE: Can you recover data from transaction log?

    Thank you all for your help.

    Another question :(. Is it possible to extract deleted data from transaction log file?

    My understanding is that I have to purchase some third party...

  • RE: Can you recover data from transaction log?

    Thanks for the answer Greg.

    So basically,

    1. Go to SSMS > Management > SQL Server Logs

    2. Use filter to find the data deletion point and time.

    3. Export csv or txt file.

    4....

  • RE: Active Account Query Question.

    Thahk you Thank you Thank You Sir!!!

    This is my version:

    select count(Customer_id)

    from InvoiceHeader

    where month(PostingDate) = 5

    and year(PostingDate)= '2007'

    and exists

    ( select *

    from InvoiceHeader

    where (month(PostingDate) between 2 and 3)

    and year(PostingDate)= '2007'

    )

    Our InvoiceHeader...

  • RE: Active Account Query Question.

    Thank you noeld!! can I ask you one more???

    If I am understanding this right, your query sample will look for

    any customer who made purchase between given periods (let say...

Viewing 9 posts - 16 through 24 (of 24 total)