Forum Replies Created

Viewing 15 posts - 4,336 through 4,350 (of 26,490 total)

  • RE: Are the posted questions getting worse?

    xsevensinzx (11/6/2015)


    Brandie Tarvin (11/6/2015)


    xsevensinzx (11/6/2015)


    Jeff Moden (11/5/2015)


    Precisely. I couldn't have said it better myself. It's a bit like interviewing a mechanic. If they can't describe the difference...

  • RE: Are the posted questions getting worse?

    Ed Wagner (11/5/2015)


    Sean Lange (11/5/2015)


    xsevensinzx (11/4/2015)


    Jeff Moden (11/4/2015)


    Brandie Tarvin (11/4/2015)


    Jeff Moden (11/3/2015)


    Man o man... yet another self-proclaimed DBA bites the dust in the interview process as has another self-proclaimed "expert"...

  • RE: Please help me with first day of month value

    Haven't heard back, so I thought I'd provide my updated solution:

    create table #Channels (

    ChannelDate datetime,

    SourceId int,

    ChannelId int,

    ...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (11/4/2015)


    Jeff Moden (11/3/2015)


    Man o man... yet another self-proclaimed DBA bites the dust in the interview process as has another self-proclaimed "expert" Database Developer. It amazing how they...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (11/4/2015)


    Lynn Pettis (11/4/2015)


    Plus, I am trying to convince my supervisor to send me back to Afghanistan for 6 months in June next year.

    Is the tea really that good?

    Actually,...

  • RE: NATURAL JOIN

    DBA Cabuloso (11/4/2015)


    I can try to explain,

    In the regular DBA job, we query our databases everyday.

    If we use Natural Join, it is more concise, we write less.

    We don't have...

  • RE: Are the posted questions getting worse?

    Jeff Moden (11/3/2015)


    Man o man... yet another self-proclaimed DBA bites the dust in the interview process as has another self-proclaimed "expert" Database Developer. It amazing how they don't know...

  • RE: Please help me with first day of month value

    FYI, I have a solution already. Just curious what change(s) you think need to be made to the query.

  • RE: Please help me with first day of month value

    EJGAJG (11/4/2015)


    Hallo Lynn,

    Was it so simple.

    Maybe i told it wrong, but i have at the moment almost 47000 rows of data and i want to filter only the first data...

  • RE: Please help me with first day of month value

    This should get you started. Ask questions if you aren't sure what the code is doing. Also, remember that Books Online is your friend.

    create table #Channels (

    ...

  • RE: Trying to troubleshoot slow dynamic SQL, PROC CACHE not showing plan

    Well, not much we can do about your query since we can't see it or the DDL for the tables it is running against.

    Please take the time to read the...

  • RE: 101 help with CASE inside of CURSOR statement

    Now for a solution:

    create table #Orders (

    order_no varchar(2000),

    tracking_no varchar(64)

    );

    insert into #Orders(order_no, tracking_no)

    values ('1256484','1Z0310590352855360'),

    ('1254541','1Z0310590353390173'),

    ...

  • RE: 101 help with CASE inside of CURSOR statement

    celticpiping (11/3/2015)


    ok, fair questions

    I did have a THEN: totally left it off for no reason..

    The end goal is to find those "order_no's that are over 7 characters in length,

    and if...

  • RE: 101 help with CASE inside of CURSOR statement

    Probably could if we knew what it is you are trying to accomplish. It's possible that it may not even require a cursor.

  • RE: NATURAL JOIN

    DBA Cabuloso (11/3/2015)


    Why doesn't Microsoft SQL Server implement NATURAL JOIN?

    It is in the SQL Standard.

    I know it can be tricky (when fields have the same name such as DateUpdated),...

Viewing 15 posts - 4,336 through 4,350 (of 26,490 total)