Forum Replies Created

Viewing 15 posts - 2,056 through 2,070 (of 2,496 total)

  • RE: master and msdb log does not get backed up

    master should never be put in anything other than SIMPLE recovery mode.  I thought SQL always put master into SIMPLE mode whenever it started, but I may be wrong.  There...

  • RE: PAssword is not null, but login works without a password

    If the user's Windows login and a SQL Server login are identical, and the user has rights to login to SQL Server via their Windows account, then you will get...

  • RE: Citrix Server needs SQL server?

    My understanding is that by default Citrix will use a MS-Access database to hold its critical information.  You have an option to use SQL Server in place of Access.

    You need...

  • RE: How to allocate objects to different filegroups?

    As other people have pointed out, the easiest way to move a table to another filegroup is to re-create the cluster index with

    CREATE CLUSTERED INDEX ... WITH DROP_EXISTING ON filegroupname

    This...

  • RE: TempDB Full (9002)

    My experience is that tempdb goes through some re-initialisation process rather than being totally re-written.  We have a tempdb of 50 GB on a DW system and SQL has no...

  • RE: Transaction log file too large

    Never shrink any database file if you expect it to grow to its original size within 3 months, except for an emergency.  All you are doing is causing Windows NTFS...

  • RE: SQL Server shutdown error

    Definitely check that tempdb has enough space to grow.

    If you are sure that tempdb can get all the space it needs, then I would report this problem to Microsoft.

  • RE: TempDB Full (9002)

    You need to work out how much space is needed for tempdb, then set the initial size of tempdb mdf and log to match your business needs.  It is also...

  • RE: Is it recommended/possible to run MSDE and sql server on the same server?

    As previous people have said, it is possible to run a mixture of MSDE and full SQL instances on the same machine.

    Because of likely memory and CPU pressure, you should...

  • RE: A question about parallelism

    I think the trick with sp_ is in BOL somewhere, or Google will know where to find it...

    If a sp starts 'SP_', SQL assumes it lives in master, regardless of...

  • RE: A question about parallelism

    First, about statistics.... 

    The optimiser chooses how to run the query depending on the values held in the statistics.  If your statistics are so old they no longer accurately describe...

  • RE: Error while running DBCC CheckDb

    You can run into problems if you run CHECKDB in a maintenance plan against a database that requires ARITHABORT ON.  The job step is always generated without a SET ARITHABORT ON...

  • RE: Bug with SQL 2005 SP2 (Please list bugs & solution here)

    Something I found in SP2...  You can ALTER a database to use the new vardecimal format, except that you cannot ALTER any of the system databases to accept vardecimal.

    It does...

  • RE: Default NULL not working

    As Andrew says, an empty string is not NULL in SQL Server, as per the ANSI SQL standard.  In Oracle, an empty string is NULL, but Oracle is outside the...

  • RE: best size for TEMPDB

    If the log file fills up you need to increase the size of the log file.  If the data file fills up you need to increase the size of the...

Viewing 15 posts - 2,056 through 2,070 (of 2,496 total)