Forum Replies Created

Viewing 15 posts - 2,206 through 2,220 (of 7,164 total)

  • RE: passing values to script using sqlcmd

    Or using the -v option.

    sqlcmd Utility (SQL Server 2005)

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

  • RE: Best way to monitor or audit SQL

    Trace is going to be your best option on 2005. You could also look into C2 or Common Criteria auditing (which both use Trace by the way) as those are...

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

  • RE: changing a sql 2005 developer license to production

    davery 28734 (1/28/2013)


    I have a windows 2003 server running sql 2005 with a developer license installed. It's now in production. I have purchased the production license, but my...

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

  • RE: Best way to monitor or audit SQL

    On SQL 2005 Trace should work just fine. Most third-party tools will likely leverage Trace anyway. You can filter on SessionLoginName to capture all SQL text issued to the instance...

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

  • RE: SSIS Packages invoke from SQL AGent job from different SQL Server

    Kishore-132325 (1/28/2013)


    Hello - Below is my setup :

    1. 1 SQL Server 2012 [ destination server ]

    2. 1 SQL Server 2008 [ source server ]

    3. 1 File server - I...

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

  • RE: SQL Server taking 2 GB ram with out PAE

    Having AWE enabled allows the system to address up to 4GB of RAM, the actual limit for a 32-bit system. 2GB is the artificial limit based on how Windows divides...

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

  • RE: Update works on some systems but on few others

    IO_COMPLETION means the code is working but the database engine is waiting for the IO system to finish committing the transaction. It sounds like the system that it will not...

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

  • RE: Deadlock Issues (Why Certain Locks?)

    Are you sure there no DML triggers in play? Which exact build of SQL Server are you using?

    SELECT SERVERPROPERTY('Edition') AS Edition,

    SERVERPROPERTY('ProductVersion')...

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

  • RE: partitioning - swapping in from smaller higher grain to lower grain

    winston Smith (1/28/2013)


    issue resolved with a constraint on the date column. seems the engine is happy to do the swap if the constraint enforces only rows that can only go...

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

  • RE: Custom DLL deployment

    When you promote the new assembly into the GAC is it using the same version and public key?

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

  • RE: sql trigger problem

    You were also missing the END that matched the opening BEGIN. If you do not plan on doing any custom error handling, e.g. enriching the error message, in the trigger...

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

  • RE: Update works on some systems but on few others

    The fact that the code works on some systems and not others indicates the code is likely sound but that there may be an environmental factor in play preventing success...

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

  • RE: how to attach database with variable path by storedprocedure??

    It requires a bit of dynamic sql:

    USE master;

    DECLARE @dbname SYSNAME = N'AdventureWorks2008R2',

    @filename NVARCHAR(500) = N'C:\Program Files\Microsoft SQL Server\MSSQL10_50.SQL2008R2DEV\MSSQL\DATA\AdventureWorks2008R2_Data.mdf',

    @logfilename NVARCHAR(500) = N'C:\Program Files\Microsoft...

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

  • RE: partitioning - swapping in from smaller higher grain to lower grain

    Even though you have different partition functions you can swap the partition out because the structure is the same and the partition boundary in the source is a subset of...

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

  • RE: getting total disk space

    Gazareth (1/26/2013)


    Can't agree more opc. Powershell's a bit of a cow to learn but it's so useful I'd recommend it to all DBA's. Great tool to have in your utility...

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

Viewing 15 posts - 2,206 through 2,220 (of 7,164 total)