Viewing 15 posts - 2,056 through 2,070 (of 2,496 total)
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...
May 16, 2007 at 3:46 am
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...
May 16, 2007 at 3:41 am
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...
May 16, 2007 at 3:36 am
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...
May 9, 2007 at 3:35 am
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...
May 4, 2007 at 6:14 am
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...
May 3, 2007 at 3:25 am
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.
May 3, 2007 at 3:11 am
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...
May 3, 2007 at 3:08 am
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...
April 30, 2007 at 3:03 am
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...
April 25, 2007 at 7:59 am
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...
April 24, 2007 at 3:07 am
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...
April 24, 2007 at 2:45 am
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...
April 23, 2007 at 3:57 am
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...
April 20, 2007 at 7:41 am
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...
April 20, 2007 at 5:49 am
Viewing 15 posts - 2,056 through 2,070 (of 2,496 total)