Viewing 15 posts - 106 through 120 (of 148 total)
if you have enough space,
then I will suggest
1.take a back up of the database and restore it on the same server with different name,
2. and then rename the db...
November 6, 2012 at 10:29 pm
Arthur Kirchner (11/6/2012)
2005s "backup log XXX with truncate_only" was wonderful, they should have kept it.
And I'm Glad that they removed this option from 2008 🙂
November 6, 2012 at 6:11 am
You can use default Stored Procedure Template from Template Explorer.
it will help you
SSMS > View > Template Explorer > Stored Procedure
November 6, 2012 at 5:01 am
if you are feasible to work in data center or where the physical server is kept,
you can pull out the network cable connected to your server machine .
but before ...
November 6, 2012 at 2:36 am
in your this case you don't need /PAE option ..as you are using 64 bit machine
I hear you on that one and not like that option/switch very much.
There are some...
November 6, 2012 at 12:39 am
Which edition of SQl server you are using ?
November 6, 2012 at 12:17 am
GilaMonster (11/5/2012)
sanket kokane (11/5/2012)
also as per the above person said never shrink your data file,it makes your indexes completely unused
No, it does not. It fragments indexes, doesn't make them unusable,...
November 6, 2012 at 12:14 am
GilaMonster (11/5/2012)
sanket kokane (11/5/2012)
What I was mean to say is consider enabling /PAE as your last option.
If running SQL on 32-bit OS with more than 4GB of memory, /PAE is...
November 5, 2012 at 10:46 pm
Koen Verbeeck (11/5/2012)
sanket kokane (11/5/2012)
Also consider this as your very last options.To speed up your DB check,first check if there any scope for Query Tuning.
I wouldn't consider this the...
November 5, 2012 at 10:13 pm
Also consider this as your very last options.
To speed up your DB check,first check if there any scope for Query Tuning.
November 5, 2012 at 6:44 am
Is your production machine 32- bit ?
if yes ,you need to add /PAE option in your boot.ini file .
http://support.microsoft.com/kb/283037
But I will recommend before doing this discuss with your...
November 5, 2012 at 6:29 am
Sorry,this is with proper code format 🙂
SELECT DB_NAME(database_id) AS [Database Name],
COUNT(*) * 8/1024.0 AS [Cached Size (MB)]
FROM sys.dm_os_buffer_descriptors
WHERE database_id > 4 -- system databases
AND database_id <> 32767 -- ResourceDB
GROUP...
November 5, 2012 at 6:06 am
this might help you
SELECT DB_NAME(database_id) AS [Database Name],
COUNT(*) * 8/1024.0 AS [Cached Size (MB)]
FROM sys.dm_os_buffer_descriptors
WHERE database_id > 4 -- system databases
AND database_id <> 32767 -- ResourceDB
GROUP BY DB_NAME(database_id)
ORDER BY [Cached...
November 5, 2012 at 5:53 am
Viewing 15 posts - 106 through 120 (of 148 total)