Forum Replies Created

Viewing 15 posts - 3,601 through 3,615 (of 7,164 total)

  • RE: Merge Replication between SQL 2012 Enterprise Version and SQL 2000 Enterprise

    Officially MS only supports 2 previous versions in terms of the compat level, i.e. database compat mode 80 is no longer available as of SQL 2012. I would not be...

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

  • RE: Merge Replication between SQL 2012 Enterprise Version and SQL 2000 Enterprise

    Right, transactional replication is not possible from 2012 to 2000. I have seen people add a shim (not official technical term) database in between to facilitate replication between incompatible platforms,...

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

  • RE: Merge Replication between SQL 2012 Enterprise Version and SQL 2000 Enterprise

    A Subscriber to a transactional publication can be any version within two versions of the Publisher version.

    2000 is three versions away from 2012.

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

  • RE: Inserting VBA Procedure into CSV Files Using SSIS

    What I would really like to see is a before and after CSV file.

    The before file being what you receive from your external data supplier.

    The after file being...

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

  • RE: Renamed AD users' accounts, now some SQL Servers can't get info

    On the problem instance can you do this?

    EXECUTE AS LOGIN = 'NewLoginName';

    GO

    REVERT;

    GO

    EXECUTE AS LOGIN = 'OldLoginName';

    GO

    REVERT;

    GO

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

  • RE: Renamed AD users' accounts, now some SQL Servers can't get info

    What does this yield on the working instance? How about the non-working instance?

    EXEC sys.xp_logininfo

    @acctname = N'GROUPNAME',

    @option = 'members';

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

  • RE: Moving sql users to new domain

    How are things going?

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

  • RE: Trouble with Cursors

    Thanks. The persistent use of memory while the cursor is open is not necessarily the same as a memory leak. Of course if your system must support a large volume...

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

  • RE: Restore MSSQL 2000 backup into 2008 R2?

    Hadrian (7/11/2012)


    yes you can ,change the compatibility when it finish.

    I think Hadrian was answering the initial post, not sjimmo, in which case the response makes sense. Look at the time...

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

  • RE: Restore MSSQL 2000 backup into 2008 R2?

    kprmcl (7/11/2012)


    Thanks for the quick replies 😎

    Hadrian (7/11/2012)


    yes you can ,change the compatibility when it finish.

    Is this the way to do it, or should I use a stored procedure?

    ALTER DATABASE...

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

  • RE: Split escaped characters

    See if something like this is interesting to you. I get something like this, which should be easily parseable by PS:

    C:\>dsquery group domainroot -limit 2 | dsget group -members |...

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

  • RE: Trouble with Cursors

    mtillman-921105 (7/10/2012)


    I believe that most of the time, you can use a WHILE loop rather than a cursor. I'm not saying that a WHILE loop is a lot better,...

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

  • RE: BULK INSERT

    BULK INSERT supports the use of a format file. See the FORMATFILE option: BULK INSERT

    Depending on what you meant:

    Using a Format File to Skip a Data Field

    or

    Using a Format File...

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

  • RE: Split escaped characters

    I have it installed on my XP workstation and I think it came with the Admin Tools Pack. I installed it so I could easily look up AD group members...

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

  • RE: Split escaped characters

    Booo 😛

    You could explore the possibility of using the command line tool dsquery which is available on XP. I have used it before, but never for automation. However with...

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

Viewing 15 posts - 3,601 through 3,615 (of 7,164 total)