Forum Replies Created

Viewing 15 posts - 3,721 through 3,735 (of 7,164 total)

  • RE: Running low dispace on drive with database files

    Are you manually growing your database files on a regular basis, or are your database files auto-growing regularly? What made you realize you were running low on disk space? When...

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

  • RE: Disk configuration

    ScottPletcher (6/26/2012)


    You lose the db as it exists if a RAID1 fails, but if you place the files properly on the two RAID1s, the db can be fully recovered, which...

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

  • RE: Seeking book recommendations for 70-433 test

    Yes, I did, and I am sure a lot of other people have as well. The people that leave reviews on Amazon are the ones that used the book as...

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

  • RE: Seeking book recommendations for 70-433 test

    Exam 70-433: TS: Microsoft SQL Server 2008, Database Development > Preparation Materials

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

  • RE: SQL Server 2008 version confusion

    robert.tuniewicz (6/26/2012)


    The result of that query is:

    SQL2, 3 and 4

    Edition: Enterprise Edition 64bit

    Product/Version: 10.0.4311

    ProductLevel: SP2

    on SQL1

    Edition: Enterprise Edition 64bit

    Product/Version: 10.0.4064

    ProductLevel: SP2

    SQL1 and 2 are in a cluster. So when I...

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

  • RE: SQL Server 2008 version confusion

    Can you please post the results of this from all 4 instances, so we're all on the same page?

    SELECT SERVERPROPERTY('Edition') AS Edition,

    ...

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

  • RE: SQL Server 2008 version confusion

    robert.tuniewicz (6/26/2012)


    I have 4 SQL Servers in my environment, SQL1, SQL2, SQL 3 and SQL4.

    SQL1 & SQL 2 are part of of Windows 2008 R2 Cluster.

    SQL3 is my...

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

  • RE: Corrupt Indexes on table with many columns ?

    Basic question, maybe nothing, but you gave us the generic error message:

    "...Cannot insert duplicate key row in object 'TableName' with unique index 'IndexName'..."

    Do the TableName and IndexName pertain to the...

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

  • RE: Creating Vertical Partition

    Keeping all data in one table, but using a separate filegroup for blobs is a good way to go, and simple.

    CREATE TABLE dbo.Personnel

    (

    PersonnelID INT NOT NULL

    ...

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

  • RE: How to exclude replication stored procedures from a script?

    Yes, it is a picture of Robert Hays as Ted Striker. I am not sure if you can see the detail in the picture but it's from the scene when...

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

  • RE: How to exclude replication stored procedures from a script?

    schleep (6/26/2012)


    Confirmed.

    Set-Location SQLSERVER:\SQL\MyServer\Default\Databases\MyDB\StoredProcedures

    dir | select name

    does not return any system sprocs. I wonder why the repl sprocs would fall into the user category.

    Weird...

    P

    Indeed. This was quite an entertaining exercise nonetheless...

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

  • RE: How to exclude replication stored procedures from a script?

    From the OP's code, modified for my machine for demo:

    Add-PSSnapin SqlServerCmdletSnapin100 -ErrorAction SilentlyContinue

    Add-PSSnapin SqlServerProviderSnapin100 -ErrorAction SilentlyContinue

    Set-Location SQLSERVER:\SQL\MyComputer\MyInstanceName\Databases\MyDataseName\StoredProcedures

    Get-ChildItem | Select Name

    I only receive a list of user-defined procs.

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

  • RE: Cross Database Query Prevention

    Issuing separate logins for separate responsibilities to the report writers would allow you to cordon off certain DBs for certain logins they are issued.

    Or you could tell them to stop...

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

  • RE: Failed job incomplete error message

    The messages logged by SQL Agent are limited, and formatting is removed making it difficult to read. Might I suggest piping the output of your job step to a file...

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

  • RE: How to exclude replication stored procedures from a script?

    schleep (6/26/2012)


    This will exclude all non-user objects. I assume they're probably not required anyway.

    Get-ChildItem | where {$_.IsSystemObject -eq $false}

    That brings up a good point. I have replication enabled in my...

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

Viewing 15 posts - 3,721 through 3,735 (of 7,164 total)