Forum Replies Created

Viewing 15 posts - 31 through 45 (of 52 total)

  • RE: Database Mirroring - Witness

    I am really really struggling with this.

    I am now getting the following message in my event log

    Database Mirroring login attempt failed with error: 'Connection handshake failed. The certificate used...

  • RE: Database Mirroring - Witness

    Hi,

    I can telnet to port 5023 on TOP-DB05.array.com

    It is very confusing.  i am trying to think of an alternative, but at present without a witness, the mirroring is of limited use,...

  • RE: Problem seeing remote SQL Server 2005

    As far as i can see the SQL Browser service is running on the server. There is an instance of SQL Server 2005 Standard and an instance of SQL Server...

  • RE: Database Mirroring - Witness

    By the way, I have get TCP/IP and Named Pipes enabled on the SQL Express installtion.  But it doesn't seem to make any difference.

     

    S

  • RE: how can i write this query

    Assuming (stupidly I know) that the MessageId is an identity column and is the primary key this is how I'd tackle it:

    select

    t.AuthorId

  • RE: Automated import

    You could either store the previous version of the table in a different table on the database and then update the Y/N flag on your new version.

    Or you could import...

  • RE: SQL 2000 to 2005 Restore

    Thanks for your help guys.

     

    s

  • RE: SQL 2000 to 2005 Restore

    Actually, I seem to have solcved this by removing the With NORECOVERY Option from my restore

  • RE: help we write this SQL weekday query

    Not my finest bit of code but...

    set nocount on

    declare @startdate datetime

    declare @table table (DW int)

    set @startdate = '1 Jan 2006'

    while @startdate < getdate()

    begin

            insert into @table (DW)

            values (datepart(dw,@startdate))

           

           ...

  • RE: Comparing and deleting

    I would have thought it would something like

    DELETE from table2 where description NOT IN (select description from table1) AND referenceID not in (select  referenceID from table1)

    S

  • RE: How can I query multiple entries for false value

    How about

    select e.<FieldList> from Employees e

    where e.EmployeeId not in

    (select EmployeeId from EmployeeTraining where CourseRefNo = <CourseId&gt

    that should do the trick.

     

    S

  • RE: Stored Procedure Frequency

    Fantastic, this is just what  was hoping to hear.

    Thanks very much

     

    S

  • RE: How to store stored procedure result in excel file

    There are several ways to store the output in excel.

    The two easiest are

    1. In query Analyzer set your Output to File and your ouput format to CSV (Tools->Options->Results will create...

  • RE: Access mdb to SQL Server 2000

    I'm sure you've already thought of this, but if the reference to the Access DB refers to a drive letter, it may be a different letter for the SQL Agent -...

  • RE: Transaction Log Mystery

    Thanks - that is a useful tip on the error log.  I will be making sure we do that in future.

    Thanks for all your suggestions, I will continue to monitor the...

Viewing 15 posts - 31 through 45 (of 52 total)