Forum Replies Created

Viewing 15 posts - 1 through 15 (of 18 total)

  • RE: Issue with deleting millions of rows of data

    Thanks for the replies folks!

    TheSQLGuru - Friday, March 17, 2017 11:19 AM

    If you need to keep a relatively few of the...

    -----------------------------------------------
    SQL Server posts at my blog, Grapefruitmoon.Net[/url]

  • RE: Fantasy football 2013

    I'm still interested if you have a space.

    -----------------------------------------------
    SQL Server posts at my blog, Grapefruitmoon.Net[/url]

  • RE: Dreaded Documentation.

    Not a magic tool to do the job, but sounds like something you could maybe knock up pretty quickly in PowerShell.

    -----------------------------------------------
    SQL Server posts at my blog, Grapefruitmoon.Net[/url]

  • RE: Fantasy football 2013

    Any spaces available? Love me a bit of fantasy football!

    -----------------------------------------------
    SQL Server posts at my blog, Grapefruitmoon.Net[/url]

  • RE: Exam 70-461

    I'd say it would depend on your experience. I've been using T-SQL for over 10 years and passed the exam in January using mainly that book. I used it to...

    -----------------------------------------------
    SQL Server posts at my blog, Grapefruitmoon.Net[/url]

  • RE: Just accepted a Sr. DBA job. Time for a gut check?

    I can understand your nerves regarding this new role, but it sounds like a great opportunity for you. You're going to get exposure to a lot of aspects of SQL...

    -----------------------------------------------
    SQL Server posts at my blog, Grapefruitmoon.Net[/url]

  • RE: What are the thing I have to load in SVN after i develop SSIS Package?

    I usually add the whole project or solution folder, but set SVN to ignore the .suo and .user files and the /bin folder.

    -----------------------------------------------
    SQL Server posts at my blog, Grapefruitmoon.Net[/url]

  • RE: SSIS - Replace Mutiple Space

    Can you confirm you're mapping the correct column to your destination? If you're not replacing the existing column in the Derived Column transform, can you check that the new column...

    -----------------------------------------------
    SQL Server posts at my blog, Grapefruitmoon.Net[/url]

  • RE: SSIS - Replace Mutiple Space

    Hi, what do you mean by SSIS is not resolving it? Are you getting an error, or output that you do not expect? Can you show us some sample input...

    -----------------------------------------------
    SQL Server posts at my blog, Grapefruitmoon.Net[/url]

  • RE: Dealing with double quotes in CSV

    Erik Kutzler (12/10/2008)


    Modify the flat file source in the Connection Manager in your SSIS package. Tell it to use a double quote as the text qualifier.

    That appears to...

    -----------------------------------------------
    SQL Server posts at my blog, Grapefruitmoon.Net[/url]

  • RE: Dealing with double quotes in CSV

    I'm not certain that it's not something else causing the error, but I've narrowed it down to the quotes so far. Every one of the rows in the error...

    -----------------------------------------------
    SQL Server posts at my blog, Grapefruitmoon.Net[/url]

  • RE: Changing SQL Task to Data Flow

    You could put the first part, the select statement without the into, in a SQL or OleDb Source in a Data Flow, creating a dataset that you can then pass...

    -----------------------------------------------
    SQL Server posts at my blog, Grapefruitmoon.Net[/url]

  • RE: Trigger and data type

    Ah yes. You'll need to join the inserted table to the source table, otherwise the insert will try to insert all rows from the table to the destination.

    -----------------------------------------------
    SQL Server posts at my blog, Grapefruitmoon.Net[/url]

  • RE: Trigger and data type

    I think you should be using the "inserted" table rather than referencing the table itself. So your insert statement would be more like this:

    INSERT INTO DBntext2.dbo.Destination (Id, Title,...

    -----------------------------------------------
    SQL Server posts at my blog, Grapefruitmoon.Net[/url]

  • RE: Select statement

    Try this...

    select

    case

    when Code= 'V918899' or Code IS NULL then '5K5'

    else Code

    end

    from YourTable

    -----------------------------------------------
    SQL Server posts at my blog, Grapefruitmoon.Net[/url]

Viewing 15 posts - 1 through 15 (of 18 total)