Forum Replies Created

Viewing 15 posts - 1,651 through 1,665 (of 2,612 total)

  • RE: SSIS Progress

    SSIS does not capture percentage information on it's own. It can log how many records have been transferred, but it does not check for totals first, so there is...

  • RE: Imporrting number data from oracle

    You can get away with that for some components, but if you need to use a lookup you will need to deal with the OLEDB provider.

    If that ends up being...

  • RE: DTS (or) SSIS

    The machine that runs the package (in your case your application server) MUST be an SSIS Server if you have anything beyond the components used by the import/export wizard or...

  • RE: Imporrting number data from oracle

    I like Oracle, but the problem is the Oracle client. Even the 10g client I am currently using is a bit of a piece of garbage - it has...

  • RE: Conditionally displaying images in a table cell

    Add all three images to the row (in the same cell) and dynamically set their visibility.

  • RE: SQL 2005 Licensing

    I would place both of these scenarios under multi-plexing and say that you need to get licenses as if client machines were connecting directly.

    These are specific enough that you may...

  • RE: Cannot resolve Odd Timeout Issue

    So running the same line of code, sometimes it times out in less than a minute and sometimes it runs for longer than a minute?

  • RE: Cannot resolve Odd Timeout Issue

    A timeout issue will not be random. If everything times out after an exact amount of time (or completes an a shorter amount of time), you have a timeout...

  • RE: SSIS Progress

    You seem to be new to programming with SSIS, so I would suggest you first go look at the books online information regarding using the SSIS object model to run...

  • RE: Does SQL recycle connections?

    Sometimes connection pooling is good and sometimes it is not.

    Absolutely make sure your developer is closing connections - pooling or not. If the connections are not closed, they never...

  • RE: MSSQLServer Service

    When a SQL database is not shut down nicely, the transactions in process need to roll back when the server comes back up. It is most likely trying to...

  • RE: get identity from a table right after it inserts into the table

    Look up SCOPE_IDENTITY() in books online.

  • RE: Application Architecture review

    As a database guy, I like to have as much data integrity managed by the database engine. This means constraints, focused data types, triggers, stored procedures, etc. in the...

  • RE: Does SQL recycle connections?

    No, SQL does not kill inactive connections. You could do this manually, but it is really a sign of an application problem that you should fix.

    Your application or web...

  • RE: dba with local admin privs

    It will depend on your interpretation of SOX.

Viewing 15 posts - 1,651 through 1,665 (of 2,612 total)