Forum Replies Created

Viewing 15 posts - 16 through 30 (of 98 total)

  • RE: ETL from MySql

    Phil Parkin - Tuesday, November 28, 2017 11:39 AM

    thbaig - Tuesday, November 28, 2017 11:00 AM

  • RE: ETL from MySql

    ZZartin - Tuesday, November 28, 2017 10:55 AM

    thbaig - Tuesday, November 28, 2017 10:48 AM

  • RE: Log Backup

    ThomasRushton - Tuesday, February 7, 2017 7:28 AM

    John Mitchell-245523 - Tuesday, February 7, 2017 7:15 AM

    February 7, 2017 at 9:22 am

    #1927120

  • RE: Conditional Join

    Phil Parkin (1/3/2017)


    So do the left join and then use COALESCE to pick up t2 data if it exists:

    select ColName = coalesce(t2.col,t1.col)

    If following is as per suggestion, it return all...

  • RE: Conditional Join

    No. It return all rows all time.

    I have updated description

  • RE: Conditional Join

    because if table2 has Reference_No, i want to display only these. Left join will display table1 data all the time

  • RE: trace is not capturing DeadLock

    Thank you Gail for updated information.

    I am studying these event and will get back if any other issue arises.

    But just for knowledge, what could be the reason with the approach...

  • RE: Monitoring Solution

    no one is willing to pay much 🙂

  • RE: High Availability solution

    Yes, I have same impression that this lead us to develop custom ETL. but due to referential integrity and number of table it is always impossible to manage. Also DDL...

  • RE: High Availability solution

    Yes, it is crazy requirement. I can write custom ETL to sync few tables but write routine for all tables and specially if you have 50+ databases , it is...

  • RE: create log shipping with tsql

    sturner (5/15/2009)


    I've always built my own log shipping mechanisms and they are easier to manage and more robust since they have more intelligence and robustness into the design than the...

  • RE: Find Invalid Combinition

    This is the only thing left.

    Case-1

    DECLARE @ProdId varchar(10) = 'Prod1',

    @color varchar(max) = NULL, -- Will make it optional and logic will work on all available color for...

  • RE: Find Invalid Combinition

    Thank you Sean , it worked.

    How can we make color and Size optional ? if either one or both provided it should return on input . If both not provide...

  • RE: Find Invalid Combinition

    sean, I want to get output like following

    -- If color invalid status should be 100

    -- if color is valid but size is invalid status should be 101

    -- if valid status...

  • RE: Find Invalid Combinition

    Thank you Jacob , I will test them .

Viewing 15 posts - 16 through 30 (of 98 total)