Forum Replies Created

Viewing 15 posts - 3,121 through 3,135 (of 7,164 total)

  • RE: SSIS, SQL 2012 and openrowset

    The info we've brought out on the thread so far does not compute. There is some other variable affecting the behavior that is missing. I'll step aside and see if...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SSIS, SQL 2012 and openrowset

    How are you connecting to the DB instance, with Windows Auth or SQL Auth?

    And just to confirm, you're opening SSMS and BIDS on the same machine using the same creds...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SSIS package error in SQL 2008 ActiveX Script

    I see "for 64-bit" and "Provider cannot be found." in the error message. It could be that the OLE DB provider teh package is trying to use is 32-bit only....

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: In SSIS package Need to Create new table Dynamically for each 1000 Records

    Adding sample package (SQL 2008 R2) as attachment in case there is interest.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: In SSIS package Need to Create new table Dynamically for each 1000 Records

    Jeff Moden (9/20/2012)


    opc.three (9/20/2012)


    You could do this in a Script Component in a Data Flow setup as a Destination. Keep a counter in your code and issue a new CREATE...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: How to create excel destination dynamically in SSIS 2008?

    only4mithunc (9/7/2012)


    Thanks Brandie,

    But here in our case we are not sure of the out put column names. Based on the parameters what we pass to the SP, the out put...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: x-cmdShell access

    Jeff Moden (9/20/2012)


    opc.three (9/20/2012)


    The less attack surfaces the better. If you're only worry is against the SQL-ninja then sure, nothing will stop them. The higher we raise the bar for...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SSIS E-mail download

    SSIS Email Source Adapter by Pragmatic Works

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SSIS E-mail download

    Third-party tools or Script Task.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: can I measure how much memory is allocated to the buffer in SS2K8 on VMWare accurately

    Measure total server memory used by SQL Server:

    SELECT cntr_value / 1024.0 AS TotalServerMemoryMB

    FROM sys.dm_os_performance_counters

    WHERE counter_name = 'Total Server Memory (KB)';

    For physical (if VM host is stealing) and...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SSIS, SQL 2012 and openrowset

    What is running your SSIS package? A job?

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Notify when CmdExec Job Steps Scheduled..?

    Extended Events session that writes to a file? The volume should be low enough that you can get away with later writing the file to a table or load up...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Question on ACID properties

    stevro (9/20/2012)


    Where did you find this? I don't think that is true at all. The rollback would remove the table.

    begin transaction

    select 5 as Col1 into SomeSillyTable

    rollback transaction

    select * from SomeSillyTable

    Yes,...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Today's Random Word!

    moving-parts

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SSIS Job needs to run every 15 minutes for 8 hours to check for existance of a record in a Table for the Current Date

    Why let the package that checks for the record exit? Just let it run. This way you would only need on SSIS package.

    There are lots of options but here are...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 3,121 through 3,135 (of 7,164 total)