Viewing 15 posts - 91 through 105 (of 1,068 total)
Please run the below query and post the output here:
select log_reuse_wait_desc
from sys.databases where name = 'dbname'
August 29, 2012 at 1:07 am
SQLSACT (8/29/2012)
My question is: Will I definately end up with orphaned users whenever I restore a database to another server?
No. Not necessarily. Orphaned users situation araises only if...
August 29, 2012 at 1:05 am
Is "ORDER BY C.FDDOC#, C.FDLINE" required?
What is the type of C.FDLINE?
Creating an index on C.FDDOC#, C.FDLINE should imporve the tempdb size and execution time.
August 29, 2012 at 1:00 am
You can leave the publication option as "False".
It won't break anything.
August 29, 2012 at 12:34 am
May be domain account password has "expired".
Check the account properties. Is "Password never changes" enabled?
August 29, 2012 at 12:25 am
Check the distribution agent job history.
You might find some clues there.
August 29, 2012 at 12:17 am
No. Changing the publication property does not trigger snapshot.
You need to manually start the snapshot.
August 27, 2012 at 10:15 am
It is because there is used page at the end which needs to be moved to front of the file.
Please run DBCC SHRINKFILE with NOTRUNCATE option as shown in...
August 27, 2012 at 4:50 am
Happy to know that everything fine now.
Thanks for updating.
August 26, 2012 at 11:59 pm
You can use DBCC SHRINKFILE. For example:
use IEDBNew
go
dbcc shrinkfile(IEDBNew_Data, 30720) -- 30GB
August 26, 2012 at 11:54 pm
No. SQL Server password is one-way encryption (Hash algorithm).
August 26, 2012 at 9:48 am
It says "Invalid object name: Sales.CreditCard".
I suspect, Data Source is pointing to wrong database.
Check the Data Source or use three part object name in the query as follows:
select * from...
August 26, 2012 at 9:38 am
Joy Smith San (8/25/2012)
Do I need to backup log if log shipping is implemented in that database ?
No
Will the log backup taken by log shipping truncate the log file so...
August 26, 2012 at 3:27 am
Hi Neeraj,
I did not understand your questions correctly.
Yes, Setting the publication property is needed.
Regards,
Suresh
August 26, 2012 at 3:17 am
Is this database upgraded from SQL 2000 version?
What is the log file size?
Please run this query and post the results here:
use dbname
go
select name, type_desc, size/128 'Size(MB)', FILEPROPERTY(name, 'SpaceUsed') / 128...
August 25, 2012 at 7:38 am
Viewing 15 posts - 91 through 105 (of 1,068 total)