Forum Replies Created

Viewing 15 posts - 10,396 through 10,410 (of 13,874 total)

  • RE: Getting Error for Dynamic file name

    n79799 (10/9/2012)


    I am assuming you are getting the error in a script task. That happens when you are trying to access a vraibale inside the script without first specifyinf it...

  • RE: SSIS Flat File Import - CSV Files with empty information

    I'd do this by using a Conditional Split in the dataflow. Just redirect the unwanted rows to an output which goes nowhere, while letting the good rows run through as...

  • RE: Sql Query help - rearranging the column

    justmohit (10/9/2012)


    you can use XML PATH to get the result

    Who'd have thought?

    Mark, perhaps?

  • RE: Sql Query help - rearranging the column

    Another way:

    declare @BigString varchar(max) = ''

    select @BigString = @BigString + Firstname

    from #temp

    order by id

    select @BigString, lower(@BigString)

  • RE: SSMS Query Logging

    ssms-man (10/9/2012)


    Ok, I understand what you want and will add to "to investigate" list. We did not re-use regions till now, so we'll need some time to invest before we...

  • RE: SSMS Query Logging

    ssms-man (10/9/2012)


    Phil Parkin (10/9/2012)


    ssms-man (10/9/2012)


    Phil Parkin (10/8/2012)


    I've downloaded and installed SSMS Boost. Some interesting features and some usability issues too (eg Script Object as CREATE/ALTER fails with 'No suitable objects...

  • RE: SSMS Query Logging

    ssms-man (10/9/2012)


    Phil Parkin (10/8/2012)


    I've downloaded and installed SSMS Boost. Some interesting features and some usability issues too (eg Script Object as CREATE/ALTER fails with 'No suitable objects found at cursor...

  • RE: what is the difference between ODBC and OleDB?

    Steve Jones - SSC Editor (7/28/2008)


    Good explanation. OLEDB is newer and superceeds ODBC. You should aim to use OLEDB connections where possible. I believe there's an OLEDB provider that encapsulates...

  • RE: Check if File Exists?

    Charmer (10/8/2012)


    Phil Parkin (10/8/2012)


    Charmer (10/8/2012)


    Phil Parkin (10/8/2012)


    Are you doing the imports in parallel or in series?

    A no-code solution could utilise FOREACH containers - the container just does not execute if...

  • RE: How to Extract Multiple tables using SSIS

    Four tables with different structures to one file?

  • RE: SSMS Query Logging

    I've downloaded and installed SSMS Boost. Some interesting features and some usability issues too (eg Script Object as CREATE/ALTER fails with 'No suitable objects found at cursor position' unless you...

  • RE: Check if File Exists?

    Charmer (10/8/2012)


    Phil Parkin (10/8/2012)


    Are you doing the imports in parallel or in series?

    A no-code solution could utilise FOREACH containers - the container just does not execute if the file is...

  • RE: Check if File Exists?

    Are you doing the imports in parallel or in series?

    A no-code solution could utilise FOREACH containers - the container just does not execute if the file is not there and...

  • RE: STUFF & ISNULL

    mubarak.a (10/8/2012)


    Hi,

    I'm new in SQL Server, i want the working process of STUFF & ISNULL. How it works & how it concatenate the row level data into a single data?...

  • RE: BULK Insert zwischen Datenbanken

    Is there a chance that you could post this in English?

    Most people here communicate in English and I think you will find that you get a better response if...

Viewing 15 posts - 10,396 through 10,410 (of 13,874 total)