Viewing 15 posts - 2,701 through 2,715 (of 6,679 total)
sql-lover (8/23/2013)
August 25, 2013 at 10:24 am
Since NTFS still fragments the file - which has nothing to do with how that file is laid out on a SAN - you should still look at the fragmentation...
August 23, 2013 at 12:55 pm
What is the recovery model of the database? If it is full recovery, how often are you running transaction log backups? Are you shrinking the log files at...
August 13, 2013 at 1:14 pm
I would check out the NUMA nodes and make sure you haven't over-allocated the memory in such a way that it is causing issues.
August 13, 2013 at 1:10 pm
Microsoft removed the Open Table option - it is now replaced by the Select Top xxxx/Edit Top xxxx.
August 12, 2013 at 12:36 pm
Once SQL Server lost connection to that drive - it doesn't check again. You can try taking the database offline and bringing it back online, but you may actually...
August 8, 2013 at 12:38 pm
DoubleEx (9/2/2011)
The...
August 8, 2013 at 12:23 pm
Jeff Moden (8/7/2013)
August 8, 2013 at 12:20 pm
Sean Lange (8/5/2013)
OldSageMonkey (8/5/2013)
Thanks its saved that time, Ill wait till tomorrow and see if it runs. 🙂
It will run and it will be successful no matter what time it...
August 5, 2013 at 11:59 am
Andrew Pruski (7/17/2013)
Sorry but an update of the statistics is necessary as a rebuild index will not update the statistics on non indexed columns.Andrew
Correct - however, it is rather wasteful...
July 19, 2013 at 12:05 pm
Here is what I use
Use {your database here};
Go
With partitionStats (object_id, rows, reserved, data, used)
...
July 17, 2013 at 1:03 pm
FYI - on VMWare 4.1 (and higher) you can now setup and specify the number of cores and logical processors per core. This is very useful when you need...
July 10, 2013 at 12:04 pm
asita (7/9/2013)
thank you for your inputs, i appreciate your help,
unluckly i dont have any audit/log enabled
now onwards, how can i make it auditable (with out my dba interfere), what...
July 9, 2013 at 12:30 pm
Not sure if this will perform any better - but is another way of generating your tally table and a calendar.
Declare @date1 date = '20130101'
...
July 9, 2013 at 9:23 am
You can either use the extract utility - which will convert the litespeed backup file into native files. However, the files will no longer be compressed and it could...
July 2, 2013 at 11:35 am
Viewing 15 posts - 2,701 through 2,715 (of 6,679 total)