Forum Replies Created

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

  • RE: Saving diagram to a file.

    We've been here before! (in oneof the Yukon forums I think).

    This was the answer I gave then...

    For a cheap but very workable soultion, try installing one of the freeware/shareware pdf...

  • RE: What data type supports 2000 characters or more?

    Don't forget that although individual varchar or nvarchar fields can have a length of 8000, there is also a limit of 8000 characters total on the row. If the total...

  • RE: Hand made log shipping

    I have a stored procedure sp_Restore which I use for this purpose, see code below. A couple of notes:

    1. all my transaction backup files are titled DBNAMEtransbak, so the DBNAME...

  • RE: Question of the Day for 04 May 2004

    Ooops!!  Just goes to show you need to test with every possible option!

  • RE: Question of the Day for 04 May 2004

    BETWEEN does a string comparison and would allow anything beginning with 'A' ..'Y' .

    However, I anwered

    ALTER TABLE employee

    ADD CONSTRAINT CK_minit

    CHECK (minit LIKE '[A | Z]' OR minit = '...

  • RE: Forcing continuous output from Stored Proc

    Try changing David's example to create first a temporary date table covering the date range in which you are interested. You can then cross join taht to the SINFORM table...

  • RE: Cross domain login

    Do you have a case-sensitive collation? We use a binary collation and I have had problems like this when the domain/username selected from a browse window is imported with a...

  • RE: Saving SQL DB Diagram to File (gif,jpg,etc)

    Print Screen is OK for small diagrams, but if you have spent ages laying out the ERM for a huge database, you then have to zoom out to fit it...

  • RE: Local Groups in Cluster

    In our cluster all the access is granted via membership of domain wide groups. We don't use groups local to the cluster member nodes at all.

  • RE: Question of the Day for 10 Feb 2004

    Hi Larry,

    Couldn't agree more. I am in the process of building a new production box, and it has 2 mirrored drives for the OS and program code, and a RAID 0+1 drive...

  • RE: Transaction Log Restore Error

    Hi Paulo,

    I checked out that URL, and it does provide an expanation for what happened; between shipping logs I had done some SERIOUS rebuilding work on indexes etc, to fix...

  • RE: Question of the Day for 10 Feb 2004

    We have our production servers configured so that the transaction logs are on RAID 0+1 disks. I answered (incorectly) RAID 0, and as you stated in your answer, "RAID 1...

  • RE: Active\Active SQL server cluster

    All the resources for the virtual servers are installed on cluster-managed resources, and are thus owned and run by only one of the nodes at a time. They are 'virtual'...

  • RE: Active\Active SQL server cluster

    The virtual server is Server1 on which is running a SQL instance Server1\SQL1 (or just plain Server1 if it was a default instance instead of a named instance)

     

  • RE: Fixed memory errors

    Thanks Alzdba, there's some really useful information there.

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