Viewing 15 posts - 106 through 120 (of 149 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
go for this
or for all about backup and restore
http://www.sqlbackuprestore.com/introduction.htm
-----------------------------------------------------------------------------
संकेत कोकणे
November 6, 2012 at 12:47 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 system admin...
-----------------------------------------------------------------------------
संकेत कोकणे
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
I cant see Error text :blink:
-----------------------------------------------------------------------------
संकेत कोकणे
November 5, 2012 at 6:04 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 149 total)