Forum Replies Created

Viewing 15 posts - 1,891 through 1,905 (of 7,164 total)

  • RE: SQL Server Agent not running

    I do not think you need to add anyone to the sysadmin Role for this. Per the article you just need to add the service account you decide to use...

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

  • RE: SQL Server Agent not running

    Which service account is the Agent service logging in as?

    Per this article in addition to enabling the service you must also change the SQL Server Agent service account and ensure...

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

  • RE: Multiple Ole db sources to a single flat file destination

    Any sorting requirements? If each line in the file could have a different number of fields then what format should each line in the file be in, e.g. comma-delimited, tab-delim...?

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

  • RE: Any thoughts on this process?

    The sp basically first gives total count of pages and then displays the records.

    Please define "total count of pages."

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

  • RE: How to Compare Data between to servers based in Id's

    It sounds like you are looking into writing a package that will something very similar to what redgate SQL Data Compare tries to do.

    Can you please clarify these statements:

    I need...

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

  • RE: When does a variable get evaluated

    Good to know you have a way forward but it seems like a Script Task would be a better choice here to save you a round-trip to the database server...

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

  • RE: Today's Random Word!

    john.arnott (2/18/2013)


    Revenant (2/18/2013)


    Ray K (2/18/2013)


    The Dixie Flatline (2/18/2013)


    C

    C#

    .NET

    -Java

    Espresso

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

  • RE: SSIS ForEach Loop Container - loop through all DB's

    Attached is a sample SSIS 2008 R2 package that pops a MessageBox for each database on your instance.

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

  • RE: SSIS ForEach Loop Container - loop through all DB's

    It's the Database!!! (2/18/2013)


    opc.three (2/15/2013)


    1. Create 3 Variables

    - one of type Object that will contain the list of databases

    - one of type Int to contain the database_id

    - one of type...

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

  • RE: Revoking public Role Permissions not working

    What you're experiencing is one of the frustrating pieces of Ownership Chaining. A DENY is not respected when an Ownership Chain is in play because only the highest chain in...

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

  • RE: Split VLDB into Multiple data files

    balasach82 (2/18/2013)


    1. If i had to move a table from a filegroup in drive A back to paimary in drive B, what should i do?

    If it's a heap, see my...

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

  • RE: Reading Data From XML through Script component

    Use of XMLReader is an iterative approach so you'll be writing code with the structure "for each node in document, do something" and those for each statements can be nested....

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

  • RE: When does a variable get evaluated

    I can tell you that variables based on expressions do change when they are used but the "used" part is a little murky. The loop coupled with the waiting that...

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

  • RE: Memory Question

    Or is you just want to know the total memory used, like what you were looking for in Task Manager:

    SELECT cntr_value AS [Total Server Memory (KB)]

    FROM ...

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

  • RE: What is the best way to access a sql server in another country using the public ip address?

    Were you able to resolve your issue?

    I find that using PortQryV2 is a bit better than telnet to diagnose issues with SQL Server. See if you can query the necessary...

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

Viewing 15 posts - 1,891 through 1,905 (of 7,164 total)