Forum Replies Created

Viewing 15 posts - 121 through 135 (of 160 total)

  • RE: Clustering, mirroring or replication?

    I would suggest mirroring as an addition, not replacement, to log shipping.  The two technologies are best suited for different purposes.

    Mirroring gives you very fast failover, automatic if you want...

  • RE: Connection on and off with SQL Server Express

    If you haven't done this already, turn on the ability for SQLExpress to receive remote connections.

    All Programs > Microsoft SLQ Server 2005 > Configuration Tools >

    SQL Server Surface Area...

  • RE: sql server express error

    I don't believe you can create database objects using a remote connection to SQLExpress.  You might need a higher level edition of SQL Server.

  • RE: Find what updates a table

    Bill McEvoy recently published an article in SQL Server Magazine where he provided a stored procedure called something like "sp_FindReferences".  The procedure accepts the name of a database object (e.g....

  • RE: Restore DataBase Error from device

    Have you tried examining the backup file with these commands?

    restore filelistonly from disk='C:\MyFolder\Myfile.bkp'

    and

    restore headeronly from disk='C:\MyFolder\MyFile.bkp'

    The contents of that backup file my give you some clues as to how the...

  • RE: Database Mirroring - Witness

    Stewart,

    Books On Line has the T-SQL code to GRANT CONNECTION permission on the endpoint.  Perhaps if you ran that manually on the Witness, it would eliminate that specific failure you...

  • RE: Database Mirroring - Witness

    Stewart,

    I am having the same experiece, except that the principal and mirror servers are running Enterprise Ed. and the SQLExpress is installed on a third server.

    Setting up a two-way mirroring...

  • RE: Change property of column

    Noel,

    Actually, in my brief testing, I was able to add the "identity" property to a column in one move in EM (If I remember correctly).

    But that wasn't the goal.  This...

  • RE: Change property of column

    WORK!!? 

    OK, I'll abandon this approach!

    Thanks

  • RE: Can I change database file name

    Bill,

    I have used the following, and it does not require the "over-rides" mentioned above.

    USE MASTER

    GO

    ALTER...

  • RE: Missing object from Master DB

    Yelena, thanks.  I'll try that approach next week after I retrieve the backup tapes.  I'll post the results.

    Elliott

  • RE: To stop a backup configured thro'''' Entriprise Manager

    Hi Deena,

    If you are talking about a backup scheduled using a Maintenance Plan, it is very easy.  Find the Maintenace Plan by opening the Management folder in Enterprise Manager.  Right...

  • RE: Sort order in a unique constraint

    Got it. thanks.

    I'll probably try changing the sort to descending, since the values are almost always going to be at that end of the range.

    Elliott

  • RE: Sort order in a unique constraint

    Noel, thanks.

    We have the correct ordering of the columns, I was just wondering if changing the sort order to Desc would speed up the insertion process because the current transactions...

  • RE: Trigger to trace DML stmts in a table

    Mathew,

    This should be pretty easy.  After creating your Trace table (sometimes called an Audit table?), create a trigger for your subject table:

    Create trigger MyAuditTrigger

    FOR insert

    AS

    INSERT into TraceTable (Col(1), Col(2), Col(3), Col(n)ActionDate) values

    Select...

Viewing 15 posts - 121 through 135 (of 160 total)