Forum Replies Created

Viewing 15 posts - 1 through 15 (of 15 total)

  • RE: Guess the RTM Build

    13.0.1500.400

  • RE: Restoring Editions

    It would depend on if the database backed up contains Enterprise features or not. If not the backup should restore with no problems. The question doesn't say that there are...

  • RE: Transaction Log Backups

    from sql help http://msdn.microsoft.com/en-us/library/ms186865.aspx

    Under the full recovery model or bulk-logged recovery model, conventional backups also include sequential transaction log backups (or log backups), which are required. Each log...

  • RE: Rowcount

    First result depends on what has been run previously in the query window. If nothing has been run, then get a 1, second result is 1.

    If a SET option e.g....

  • RE: T-SQL - SELECT TOP

    For that query to work it should be grouped by salescategory, salesperson, otherwise you will get this error when running the query

    Columns salescategory, salesperson are invalid in the select list...

  • RE: Database Roles

    There is a db_sysltduser role in the msdb database, but not db_sysitduser role, looks like a uppercase 'I' was mistaken for a lower case 'l' in the role name!

  • RE: Upgrading SQL Server 2005

    Assuming that the evaluation edition has not expired.

  • RE: xp_semdmail failing

    The problem will also occur if you are sending attachments with the email and the attachment cannot be found by SQL Server.

  • RE: Question of the Day for 02 Jun 2005

    Yes, if @var is more than 125 characters long, it will always return 'no' as the replicate value will exceed 8000 characters

  • RE: Question of the Day for 03 Nov 2004

    Maybe the explanation should read:

    The null value in SQL Server is replaced by 2 which is then implicitly cast as DateTime by the SQLServer, resulting in 3 Jan 1900

  • RE: Question of the Day for 03 Nov 2004

    Answer correct, but explanation is a bit off, ISNULL replaces null values with the second parameter casted as the type of the first parameter, it doesnt add 2 to anything.

    From...

  • RE: Question of the Day for 21 Oct 2004

    It works, thhough I have never heard of it before this question.

    You cannot specify a table identifer before the Id_A in the join expression otherwise the query fails, You...

  • RE: Question of the Day for 04 Aug 2004

    Very similar but not the same

    21 July question was

     'AWE allows SQL Server to address how much memory on SQL Server 2000 Enterprise Edition?'

    This one is

    'AWE allows SQL Server to...

  • RE: How do I find Unanswered questions

    There is no easy way to work out which ones you havnt answered. However, if you have time you could use the link to the question page, to see if you...

  • RE: Question of the Day for 04 May 2004

    4) is also correct

    ALTER TABLE employee

    ADD CONSTRAINT CK_minit

    CHECK (minit BETWEEN 'A' and 'Z' OR minit = ' ')

    3) almost works (allows a ',' into the field)

    ALTER...

Viewing 15 posts - 1 through 15 (of 15 total)