Forum Replies Created

Viewing 15 posts - 9,121 through 9,135 (of 9,399 total)

  • RE: Moving data from Server-A/table-x to Server-B/Table-x

    HanShi hit the nail on the head. SSIS, bcp and BULK INSERT use a mechanism for inserting data that is not like the INSERT statement. The first time...

  • RE: Programming

    I agree with Steve's assessment that programming is a core skill. I also feel strongly that a good portion of the population are loosing the ability to think for...

  • RE: Upgrade SQL Server 2000 to SQL Server 2008

    Dwain.c raises a very good point. Granted, I never implement something in production until it's been out for a while, but Win Server 2003 is pretty close to end-of-life,...

  • RE: Sorting based on user input..

    Erland is right - you only need one round-trip to the database instead of one for each row.

    In .NET, when you bind data to a grid, it's usually done in...

  • RE: Email function results as XML

    That may just be it. I tried it having the sp_send_dbmail procedure fire the query with several different CONVERT functions using the XML in a variable and a table,...

  • RE: Report from Audit table

    kk1173 (7/9/2013)


    Can you please describe in more detail about the daily snapshot approach?

    Yes. We had an employees table that contained a lot fields. There were a lot of...

  • RE: Email function results as XML

    I thought I saw the solution to your problem as one of the XML data type being casted improperly when the result was returned and therefore being incorrectly populated in...

  • RE: Report from Audit table

    Is this what you're looking for?

    declare @dtmPointInTime datetime = '03/15/2013';

    select ms_id, startdate, enddate, NewRole, case when voided = 1 then 'Voided' else '' end Voided

    from Audit2

    where...

  • RE: Sorting based on user input..

    Sean Lange (7/9/2013)


    deepkt (7/9/2013)


    one of other scenario is failing.. plz help..

    What is failing? Are you getting an error message? Or is it a logic error? I am still confused as...

  • RE: Sorting based on user input..

    So what are you after here? Copying and pasting a few lines from the original post isn't of much help, since we've already read it.

    If you're trying to control...

  • RE: What is # in first letter of table names?

    A good programming practice is to always drop your temporary stuff in the procedure when you're done. I know they're supposed to be destroyed when the session terminates, but...

  • RE: PushD commands from MS

    Two things come to mind.

    The first is that you have embedded returns in your DOS command, which means that you are saying to execute these 3 individual commands at the...

  • RE: How to solve

    The tally table is definitely the way to go. Performance is through the roof. If you don't like using it inline because you don't understand it yet, you...

  • RE: Please HELP !! :SQL SERVER with MySQL Linked Server. Error Executing Trigger

    Erland Sommarskog - Author of several excellent writings and the host of sp_sqltrace. Very nice you see you here. Welcome!

  • RE: Upgrade SQL Server 2000 to SQL Server 2008

    1. I've never done an upgrade from SQL 2000 to 2008, so I'm going to leave that one alone.

    2. I looked up the requirements for SQL 2008 and you're right...

Viewing 15 posts - 9,121 through 9,135 (of 9,399 total)