Viewing 15 posts - 61 through 75 (of 95 total)
Yes, DBCC FREESESSIONCACHE can be used in case of distributed environment.Agree, not to use in Production environment unless you have a maintenance window.
March 9, 2010 at 4:14 pm
It will.I witnessed it.See my post..I said after clearing cache, perform shrink operation.:smooooth:
March 9, 2010 at 1:50 pm
Who said to run it production server? I am giving an alternative to shrink tempdb without restarting server as asked in the very first post.This will help I guess:cool:
March 9, 2010 at 1:42 pm
Run this before performing shrink operation.
Use tempdb
go
DBCC FREESYSTEMCACHE(ALL);
DBCC FREESESSIONCACHE;
then perform your shrink operation.
Thanks
Vivek
March 9, 2010 at 1:20 pm
DB is not visible. How can we proceed now?
February 18, 2010 at 2:38 am
Its getting messy. Let simplify the point. Can we recover a database to its maximum with a full backup and valid ldf file available? Truncation logs were not performed on...
February 18, 2010 at 2:08 am
My recovery model is full. This is a UAT database. I know if there were t-log backups, the database could have been recovered to its maximum. I am repeatedly saying...
February 17, 2010 at 8:36 am
Can you elaborate your point?
February 17, 2010 at 6:02 am
As GilaMonster said to use emptyfile option, can it be done on the file which has some used extents.I am asking because I had performed DBCC FILESTATS and I saw...
February 15, 2010 at 5:52 am
No response yet:ermm:.Any clue might help.
Vivek
February 10, 2010 at 7:26 am
Use DBCC SHOWFILESTATS to check if your database file still has some used extents.
Generally there are two reasons if a file cannot be removed from a filegroup after being used...
February 8, 2010 at 7:07 am
I was not distinguishing view and an indexed view.I know very well that they are two different things:cool:.I guess the above posts are not confusing for Vyas bcoz some posts...
February 8, 2010 at 6:22 am
I was asking have you tried restoring on the server with same version.:laugh:If yes,do you get the same error message.
And, in case of different versions, I guess George is right.
Vivek
February 5, 2010 at 6:39 am
You said that you are trying to restore it to a different location.Does the destination server has same version of SQL Server as of the the source server?Can you try...
February 5, 2010 at 6:15 am
Viewing 15 posts - 61 through 75 (of 95 total)