Forum Replies Created

Viewing 15 posts - 1,591 through 1,605 (of 7,164 total)

  • RE: ANSI to UTF-8 conversion

    What tool are you using to extract the data?

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

  • RE: DB for Reporting

    Jay Beta (3/15/2013)


    You can also use SQL Server 2012 Always ON Availability Groups and using a secondary replica for reporting. This way you also accomplish redundancy and reporting at the...

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

  • RE: SSMS showing local DBs not remote DBs when editing remote maint package

    It depends on whether someone ever changed the default connection in the MP.

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

  • RE: Pull "unformatted" data into existing table structure via SSIS?

    Barkingdog (3/14/2013)


    Thank you very much!

    edm2

    You're quite welcome!

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

  • RE: replicating data from mssql to mysql

    I suspect peer-to-peer would be practically impossible between MySQL and SQL Server. If you want to split reads and writes SQL 2012 has some great options within the Always On...

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

  • RE: working with sa account

    sej2008 (3/14/2013)


    yes I got your answer but still why public role exists when we have fixed database roles and user defined roles.what are the permission given to this role.

    It's like...

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

  • RE: replicating data from mssql to mysql

    Have you considered the costs associated with

    1. Getting an unsupported configuration working initially.

    2. Maintaining an unsupported configuration over time.

    3. Splitting your development time and expertise across two platforms...the techniques and...

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

  • RE: new to calling procedures or scripts

    alan_lynch (3/14/2013)


    thanks for that

    enjoy your weekend

    You're welcome. Thanks, you too.

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

  • RE: Pull "unformatted" data into existing table structure via SSIS?

    In a Data Flow connect a Flat File Source to an OLE DB Destination. Then in the properties of the OLE DB Destination when the type is set to "Table"...

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

  • RE: working with sa account

    sa is like the Windows "Administrator" account for the instance. When logged in as sa you can do any action on the instance. Lots of people, including myself, like to...

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

  • RE: new to calling procedures or scripts

    Sure. Open a query window and on the Query menu select SQLCMD mode.

    http://msdn.microsoft.com/en-us/library/ms174187(v=sql.105).aspx

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

  • RE: Why is "instead of delete" trigger not fired by delete inside "after update" trigger

    What the code sample illustrates is that an AFTER trigger firing for an event listened for by an INSTEAD trigger on the same table will not fire that INSTEAD trigger,...

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

  • RE: "instead of delete" trigger is not fired from "after" trigger

    This thread seems to have gotten to the bottom of the behavior you are seeing:

    http://www.sqlservercentral.com/Forums/Topic1430725-391-1.aspx

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

  • RE: adding a new not null bit column with default 0

    bugg (3/14/2013)


    opc.three (3/14/2013)


    bugg (3/14/2013)


    GilaMonster (3/14/2013)


    bugg (3/14/2013)


    That is why I was looking into creating a new table with the addtional column then moving the data etc and finally doing a table...

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

  • RE: Why is "instead of delete" trigger not fired by delete inside "after update" trigger

    That seems to be the ticket. The instead trigger is fired once, and the after trigger is what continues to recurse.

    USE [master]

    GO

    ALTER DATABASE [YourDatabaseName] SET RECURSIVE_TRIGGERS ON WITH NO_WAIT

    GO

    USE [YourDatabaseName]

    GO

    IF...

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

Viewing 15 posts - 1,591 through 1,605 (of 7,164 total)