Forum Replies Created

Viewing 15 posts - 871 through 885 (of 1,246 total)

  • RE: Avoiding duplicates from file import

    You approach doesn't account for when you have a valid reason to insert the data again. Such would be the case when you got the original file with some or...

    ----------------------------------------------------

  • RE: Missing members in a table.

    Just to cover this, how did you conclude there are members missing? Does the process that moves the data from the flat file truncate the table before loading it (by...

    ----------------------------------------------------

  • RE: How to Calculate Costed Bill Of Material

    Assuming the item name can indicate a leaf level part... might this be what you are looking for

    with MstrTable as (

    SelectBom.Compitemno

    , 1 as [level]

    fromBOM

    whereBOM.CompItemno = 'Parent1'

    UNION ALL

    SelectB.Compitemno

    , MstrTable.[LEVEL]+1...

    ----------------------------------------------------

  • RE: Need help to understand Errors

    I am wondering if it could be a firewall issue or an issue connecting from SSRS to the Exchange server. Also, did a password for some service account get changed...

    ----------------------------------------------------

  • RE: Joining the results of two queries without creating temporary tables.

    dogramone (11/16/2014)


    Are you making a stored procedure call here? I'd recommend it and then make the first line "set nocount off" and the last "set noucount on". This...

    ----------------------------------------------------

  • RE: Revenue by product dimension - what about fees and charges?

    You could think of each of these as a service, that service is still a product. Even if it is a unwanted good, it still generated a line item of...

    ----------------------------------------------------

  • RE: WQL Query to use in WMI Event Watcher Task - watch for new file being added

    Thanks for your responses. I am also looking for a good resource on WQL, if anyone has any suggestions.

    Thanks.

    ----------------------------------------------------

  • RE: WQL Query to use in WMI Event Watcher Task - watch for new file being added

    Thanks Ells. I will try that suggestion, using a script task with a variable. I was just curious if there was some issue with the query I have and why...

    ----------------------------------------------------

  • RE: SSIS Variables

    Chris Hurlbut (11/5/2014)


    Don't know if this is the cause but when you are working with excel go to the Project Properties--->Debugging and set Run64BitRunTime to False

    True...

    What version of Excel are...

    ----------------------------------------------------

  • RE: WQL Query to use in WMI Event Watcher Task - watch for new file being added

    Hi,

    Is there any one that can offer any advise?

    It would be much appreciated. Thank you 🙂

    ----------------------------------------------------

  • RE: Primary Key datatype Bigint vs uniqueidentifier:

    I was thinking also there are times when a business would get accounts from a client with the client's key (account #)for that account. You would create your own...

    ----------------------------------------------------

  • RE: Integration Services for Dummies type book/resource?

    Phil Parkin (11/7/2014)


    MMartin1 (11/6/2014)


    There is also the 2208 SSIS book written by Knight and team. Professional Microsoft SQL Server 2008 Integration Services (Knight, Veerman, Dickinson, Hinson and Herbold) from Wrox....

    ----------------------------------------------------

  • RE: Integration Services for Dummies type book/resource?

    There is also the 2208 SSIS book written by Knight and team. Professional Microsoft SQL Server 2008 Integration Services (Knight, Veerman, Dickinson, Hinson and Herbold) from Wrox. It is a...

    ----------------------------------------------------

  • RE: Primary Key datatype Bigint vs uniqueidentifier:

    DonlSimpson (11/6/2014)


    MMartin1 (11/5/2014)


    ... surrogate keys are a data warehouse concept and not in the operational data system ...

    Actually, this is not correct. E.F. Codd introduced the concept of surrogate...

    ----------------------------------------------------

  • RE: SSIS: Dynamically map metadata in a Data Flow Task

    Using the wizard ...

    Depending on the relationship of the tables, you can also then group the individual Data Flows (DFs) together into sequence containers and run those serially, with the...

    ----------------------------------------------------

Viewing 15 posts - 871 through 885 (of 1,246 total)