Viewing 15 posts - 286 through 300 (of 455 total)
All your partitions are in the same filegroup. What you are trying to achive with partitioning?
March 12, 2014 at 12:25 pm
Do you have VIEW ANY DEFINITION permission?
March 10, 2014 at 2:09 pm
Question: if my database files sit all on one drive, will my query benefit from parallelism (even if query cost > threshold)?
March 7, 2014 at 9:22 am
Check the following things in production:
1. Blockings.
2. Resources (CPU, memory) consumption by other processes.
3. Index fragmentation.
4. Whether statistics is fresh.
5. File-system I/O througput
March 6, 2014 at 3:02 pm
You don't need to put it in a separate script - just comment create procedure ... as begin,end, etc.
March 6, 2014 at 2:23 pm
Author's ultimate goal are blockings. If nothing blocks his report, he does not need to care about held locks and open trans.
March 6, 2014 at 2:01 pm
If you don't have any FK referencing your PK, you can add this column to PK and partition it.
However, if you have FK from other tables referencing your PK, you...
March 6, 2014 at 1:57 pm
If you partition a table: YES.
If you partition just an index: not necessary.
March 6, 2014 at 1:18 pm
Did you have blockings?
select * from sys.sysprocesses
where blocked>0
March 6, 2014 at 1:16 pm
Try to backup with compression. In this case, the combined backup size will be around 150-200 GB, so there is a chance you'll be able to find a space on...
March 6, 2014 at 11:34 am
1. Go up from your point where you select from @SystemComponentTbl.
2. Find all occurances where data is inserted, updated or deleted from it.
3. After each of such query, put: select...
March 6, 2014 at 11:19 am
Maybe it would be easier, but I have several servers: dev, test, UAT, prod. In order not to mix, I have one SSMS per server, with color-coded status panel in...
February 28, 2014 at 7:40 am
On server hard-disk, try to find this file whether it exists there at all. Try to delete it.
February 21, 2014 at 8:52 am
DBA-640728 (2/20/2014)
We are getting this alert because physically the file group is removed but logically it is presented and acting as a orphan file.
Unlike Files, the Filegroup is only...
February 21, 2014 at 8:11 am
Viewing 15 posts - 286 through 300 (of 455 total)