Forum Replies Created

Viewing 15 posts - 3,046 through 3,060 (of 7,164 total)

  • RE: MCITP Certification

    It depends on what you're intending to support after passing the exams but I would go for the 2012 exams at this point.

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

  • RE: Alternative for checkpoint

    Think of the overhead you'll be asking every other developer that work not only on this package, but also others that need this same checkpoint-like behavior. It's going to become...

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

  • RE: bcp a pipe delimited file

    sanjuv999 (9/25/2012)


    please guide me

    Do not enable xp_cmdshell! You do not need it for this scenario and it introduces risk in your environment.

    If you want to do everyting with T-SQL use...

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

  • RE: XSLT to generate table using BCP format file in xml

    I would grab a copy of XML Spy and try mapping it. It's a pretty robust tool and could probably get you your XSLT pretty fast.

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

  • RE: Want to find transaction log size before taking backup

    CREATE TABLE #LOGSPACE

    (

    DB SYSNAME,

    LogSize FLOAT,

    SpaceUsed FLOAT,

    Stat BIT

    );

    INSERT INTO #LOGSPACE

    (

    ...

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

  • RE: Alternative for checkpoint

    No need for an extra step really, if all you want to do it restart that step should it fail. In the job step you can set the Retry attempts...

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

  • RE: db_owner and sysadmin unexpected behavior

    GilaMonster (9/25/2012)


    opc.three (9/25/2012)


    My only point was that being a member of sysadmin does not imply there is a user in the db_owner Role named 'sa.'

    No, there doesn't have to...

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

  • RE: generate xml file with out carriage return\line feed from sql query

    I am still unclear about your concern. In the data? Or in between the markup tags?

    Like this:

    <root><element>1

    2

    3</element></root>

    Or like this:

    <root>

    <element>123</element>

    </root>

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

  • RE: db_owner and sysadmin unexpected behavior

    GilaMonster (9/25/2012)


    opc.three (9/25/2012)


    GilaMonster (9/25/2012)


    Any member of the sysadmin role has all permissions across the instance, is implicitly db_owner of all databases and cannot be denied anything.

    To be clear sa is...

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

  • RE: generate xml file with out carriage return\line feed from sql query

    XML is not format dependent. Any whitespace produced in between markup is strictly for us humans. All XML parsers are going to strip that out (i.e. ignore it). What are...

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

  • RE: Job on 2012 to run SSIS 2008

    I haven't used it so am not sure it fills all your requirements but it sounds like using a Multi-server Agent Job may work for you:

    Automated Administration Across an Enterprise

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

  • RE: db_owner and sysadmin unexpected behavior

    sestell1 (9/25/2012)


    opc.three (9/25/2012)


    GilaMonster (9/25/2012)


    Any member of the sysadmin role has all permissions across the instance, is implicitly db_owner of all databases and cannot be denied anything.

    To be clear sa is...

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

  • RE: Question about sys.dm_os_process_memory

    Perry Whittle (9/25/2012)


    opc.three (9/25/2012)


    I realize that. That is my motivation for adding in the coulmn that implies it is the amount of memory allocated as a locked page, i.e. AWE...

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

  • RE: French characters into SQL Server

    You're welcome. Happy you got it sorted.

    As I said though, "Unicode" = UTF-16LE. I was saying to try the input file in UTF-32 format. Something like this would have created...

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

  • RE: Question about sys.dm_os_process_memory

    Perry Whittle (9/25/2012)


    opc.three (9/25/2012)


    I didn't think locked pages were part of the working set which is why Task Manager lies to us but maybe locked_page_allocations_kb is not what I am...

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

Viewing 15 posts - 3,046 through 3,060 (of 7,164 total)