Forum Replies Created

Viewing 15 posts - 3,226 through 3,240 (of 13,877 total)

  • Reply To: SSIS with Multiple Databases

    Is SSIS able to handle multiple databases in a package?

    No problem.

    Is SSIS able to handle dynamic schema changes (such as creating a SQL Agent Job on a schedule and running...


  • Reply To: Case when then

    There are two rows in your table, yet you are trying to assign single values to scalar variables by selecting from that table. You cannot condense multiple values from your...


  • Reply To: Looking for simple non-aggregate version of PIVOT to transpose Rows into Columns

    Great start. Based on the sample data, what would your desired results look like?


  • Reply To: Xabse - convert varchar to numeric

    You're in a SQL Server forum, not XBase. There may be people here who can help you, but you may be better off finding a forum dedicated to XBase.


  • Reply To: Xabse - convert varchar to numeric

    '16:00' is not a valid numeric value, so you cannot do this. What are you trying to do?


  • Reply To: Looking for simple non-aggregate version of PIVOT to transpose Rows into Columns

    Are you going to provide DDL & sample data for this?


  • Reply To: remove double quotes from file ssis- azure

    Jeff Moden wrote:

    Thanks, Phil.  I really appreciate your feedback on these types of things.

    As a bit of a side bar, how do you like that new Azure ETL tool?  Does it...


  • Reply To: remove double quotes from file ssis- azure

    Hi Jeff, I'm still fairly new to Azure (six months and counting ... slowly!) and have been spending a lot of time on the DevOps side rather than doing 'proper'...


  • Reply To: remove double quotes from file ssis- azure

    Azure Blob Source does not supports multiple-character delimiter.

    Nit-picking a little, but the delimiter is only a single comma. The double quotes are text qualifiers.


  • Reply To: remove double quotes from file ssis- azure

    dallas13 wrote:

    Thanks and I've tried that and it works for varchar datatype but not for datetime datatype.   REPLACE(COLUMN_NAME, "\"", "")

    As it's coming out of a text file, it has no...


  • Reply To: Are the posted questions getting worse?

    try
    {
    OneLineOfCode;
    try
    {
    AnotherLineOfCode;
    try
    {
    ThirdLineOfCode;
    }
    catch(Exception ex) {}
    }
    catch(Exception ex) {}
    }
    catch(Exception ex) {}

    This code was "generated by a tool" 🙂


  • Reply To: remove double quotes from file ssis- azure

    If you can live with the quotes on the column names, it would be easy enough to use derived columns to remove the quotes from the data itself.


  • Reply To: Cross join and merge

    Instead of

    SELECT cols

    ...

    Try

    SELECT DISTINCT cols

    ...

    Does that help?


  • Viewing 15 posts - 3,226 through 3,240 (of 13,877 total)