Viewing 15 posts - 226 through 240 (of 712 total)
I am using this query to find top 15 poor queries, modify as per your request and run it before and after index creation and see everything going as per...
July 31, 2013 at 1:00 am
Nassan (7/30/2013)
I hopeful, there has...
July 31, 2013 at 12:41 am
sqlman63 (7/30/2013)
Replication and mirroring can also cause growth. if the connection is lost, the logs will grow.
In source server? what will it do to increase it?
July 30, 2013 at 7:39 am
Depends on new index size and DB will grow
User DB will never return it to OS automatically and tempdb will not return it till the next SQL restart.
July 29, 2013 at 3:33 am
SORT_IN_TEMPDB you might not have set it so sorting will happen in same DB which might have increased the space growth
July 29, 2013 at 2:50 am
then possible sorting is happening on the same DB and possible for DB growth
July 29, 2013 at 2:36 am
SORT_IN_TEMPDB is it set or not, i hope the large index sorting keeps it growing.
July 29, 2013 at 2:29 am
use the below script to find drive free space and DB free space.
use master
CREATE TABLE #TMPFIXEDDRIVES (
DRIVE CHAR(1),
MBFREE INT)
INSERT INTO #TMPFIXEDDRIVES...
July 29, 2013 at 1:10 am
added to above user's comments
you can learn some from books, google, online help etc.
To learn all SQL technologies have to come from your experience, reading SQL form's and problems you...
July 29, 2013 at 1:00 am
patientnumber looks unique keep this a primary key and create non clustered index as per requirement.
covering index column will work faster than columns not in any columns.
July 26, 2013 at 8:48 am
Janda Nel (7/24/2013)
I want to make a job step,but it must do various commands.The steps is as follows.
1.Copy a file over to another file location
2.Insert a records into a...
July 26, 2013 at 6:35 am
jpettigrew (7/25/2013)
July 26, 2013 at 6:24 am
Thanks all and may i know how application has related to huge free space, any link or suggestions will be helpful.
July 22, 2013 at 5:20 am
rajeshn29.dba (7/20/2013)
1.In mirroring If I add data file in primary server will it reflect in mirror server or not?
If yes can you pls explain me?
2.In transactional replication if we...
July 22, 2013 at 4:36 am
Forgot to mention please post new questions in different thread .
July 22, 2013 at 3:11 am
Viewing 15 posts - 226 through 240 (of 712 total)