Forum Replies Created

Viewing 15 posts - 3,436 through 3,450 (of 7,164 total)

  • RE: SQL 2012 - 2 SSIS services after upgrading from SQL 2008 R2

    Tatsu (8/2/2012)


    opc.three (8/1/2012)


    Were you continuing to run your 2008 packages using dtexec 10.0? From the file system or were they carried forward in the upgrade and allowed to stay in...

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

  • RE: Exiting sqlcmd with RAISERROR(50001,10,127)

    Michael Lato (8/2/2012)


    I am trying to set up some upgrade scripts using sqlcmd but I need a graceful exit from the script under certain conditions (i.e. wrong database version). ...

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

  • RE: hyperthreading on enterprise licenses??

    I bought software from these guys years ago, and still use them for price compares all the time because their URL is so easy to remember, probably because it reminds...

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

  • RE: Step by Step approach to add an identity colum to an existing table.... Please Comment...

    mmgorman (8/2/2012)


    I have an existing Person table with about 4 million rows.

    I have an existing PkeyColumn, PersonId, that has values from say, 1 to 4,000,000. PersonId does NOT have the...

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

  • RE: Just a rant about how third parties design apps

    jeff.mason (8/2/2012)


    So why bother making replication able to replicate schema then? There is only one schema change that replication cannot handle -- dropping tables that are part of a...

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

  • RE: Just a rant about how third parties design apps

    jeff.mason (8/2/2012)


    opc.three (8/2/2012)


    jeff.mason (8/2/2012)


    If someone wants to add a column to the middle of a table, they should get better SQL training.

    This is exactly what Microsoft is up against. They...

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

  • RE: Just a rant about how third parties design apps

    jeff.mason (8/2/2012)


    If someone wants to add a column to the middle of a table, they should get better SQL training.

    This is exactly what Microsoft is up against. They have to...

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

  • RE: WMI task and WQL query

    Ian C0ckcroft (8/2/2012)


    Thanks opc,

    that is the article I used to dev with and then I tried all different options.

    i ORIGINALLY USED

    SELECT *

    FROM __InstanceCreationEvent WITHIN 1800

    WHERE TargetInstance ISA 'CIM_DataFile'

    ...

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

  • RE: Just a rant about how third parties design apps

    jeff.mason (8/2/2012)


    opc.three (8/1/2012)


    It's a least common denominator approach. If SSMS were coded to account for every permutation possible to arrive at the most efficient way to add a column think...

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

  • RE: execute a built command at command line from SSIS without using xp_cmdshell? Must I build a .bat?

    I hadn't known of it before but Shell looks promising. Please let us know how it goes. I see there are some challenges in deployments when running unattended.

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

  • RE: Pros and Cons - Table with loads of uniqe columns VS Row based keys with row data type

    iBar (8/2/2012)


    opc.three (8/1/2012)


    The EAV model is an anti-pattern when attempts are made to apply it as a 'more flexible' replacement to a proper relational design. There are certainly places where...

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

  • RE: BCP in UNIX files

    You posted this in the Integration Services forum so why use bcp? Why not SSIS? If you do in fact need bcp you'll have to use a format file to...

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

  • RE: WMI task and WQL query

    You can use LIKE with WMI. I would recommend modifying your query to use TargetInstance.Path, TargetInstance.FileName and TargetInstance.Extension instead of TargetInstance.Name for performance reasons. Using .Name as you have it...

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

  • RE: XACT_ABORT with recursive stored proc

    XACT_ABORT may work, but I would recommend you use TRY/CATCH instead for managing exceptions and transactions.

    BEGIN TRY;

    BEGIN TRAN;

    Exec StoredProc1; -- this stored...

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

  • RE: Script needed for DB Full Backup to Folder on nightly task

    SpringTownDBA (8/1/2012)


    Ola hollengren, DB maint script.

    Don't reinvent the wheel.

    +1

    http://ola.hallengren.com/sql-server-backup.html

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

Viewing 15 posts - 3,436 through 3,450 (of 7,164 total)