Viewing 15 posts - 44,521 through 44,535 (of 49,571 total)
For clarity, the problem was originally reported here -
http://www.sqlservercentral.com/Forums/Topic560965-391-1.aspx
I'm more surprised this survived all the testing that was done on 2008. Seriously, in all the automated tests that were...
September 15, 2008 at 3:27 am
Update stats isn't needed (and can be counter-productive) if a full index rebuild is done. Update the stats only of tables that have been reorganised.
What exactly do you mean by...
September 15, 2008 at 3:10 am
The performance of adhoc SQL and Stored procedures is pretty much the same. What procedures give you is better plan cache reuse (and if your server has lots of memory...
September 15, 2008 at 3:09 am
You can use DROP USER to remove database users
If you can explain a bit more about your problem, someone will be able to help you more.
September 15, 2008 at 1:56 am
Alter Index ... Rebuild
You can get all the details of the various options from Books Online
September 15, 2008 at 1:55 am
SQL Server does that automatically. If a user is updating a row then that row is locked exclusive and cannot be read or changed by anyone else.
Have I misunderstood what...
September 15, 2008 at 1:50 am
If the DB is in full recovery, then the log backups probably won't be able to run due to the single user mode.
If the DB is in simple recovery, then...
September 15, 2008 at 1:46 am
There's a proportional fill algorithm that's used. It doesn't matter what the file's max size is, just how much free space is in the files.
If you have three files...
September 14, 2008 at 10:52 am
Please find the SQL error log on the rebuilt node and have a look at what it says. Providing the service is getting started at all, there should be a...
September 14, 2008 at 10:49 am
jerryhung (9/13/2008)
so my next step is perhaps change all TABLE VARIABLE -> TEMP...
September 14, 2008 at 2:20 am
rian67 (9/13/2008)
According to the job description of DBA, they are responsible for Security, Performance, Recoverability, High Availability of RDMS. For...
September 13, 2008 at 7:52 am
And check that there isn't a job somewhere that runs shrink on a regular basis
September 13, 2008 at 3:29 am
I'll give it a try, however, since the policies are implemented as DDL triggers behind the scenes, I don't think it's possible.
Are you talking about a policy that prohibits a...
September 13, 2008 at 3:26 am
Table variables has the same scope as normal variables. Much less than a temp table. Their lifetime is limited to one set of commands (batch) sent to the server.
So,...
September 13, 2008 at 3:16 am
Viewing 15 posts - 44,521 through 44,535 (of 49,571 total)