Viewing 15 posts - 226 through 240 (of 246 total)
Yep thats what I'm trying to do. The post was mis-leading.
Corrupt backups are not included in the Attempt to restore.
BACKUP A
TRANS A-Z
Z restore with recovery.
Backup B & C just to...
September 25, 2013 at 6:43 am
Can I only restore up to TRANS BACKUP D.
This will mean data loss.
September 25, 2013 at 6:13 am
What are the data types of the tsble, are there any large data types ie VARCHAR(MAX),TEXT etc.
What is the data size of the whole table.
Is it waiting to get exclusive...
September 24, 2013 at 6:25 am
One thing I never encountered is corruption of a db. It makes me nervous for some reason just thinking about.
Currently I backup and restore a few main production dbs to...
September 12, 2013 at 7:22 am
One thing I never encountered is corruption of a db. It makes me nervous for some reason just thinking about.
Currently I backup and restore a few main production dbs to...
September 12, 2013 at 6:40 am
Can you see if something is leaving allocated pages in tempdb.
select * from sys.dm_db_task_space_usage
where internal_objects_alloc_page_count <> 0
Anything which has an high alloc and low dealloc. Then whatever that spid is...
September 9, 2013 at 9:36 am
Easily done Via SSRS configuration tools.
If you want to keep the original SSRS dbs for rollback.
1 Backup the dbs with copy.
1a Backup SSRS encryption keys\cert.
2. Restore the dbs as...
September 5, 2013 at 7:35 am
It looks that way. It's a no go for me due to the connection issues and the fact I'm running on Windows 2008 R2 x64 bit which it is advised...
September 5, 2013 at 1:48 am
Thanks Steve.
Tested, JUST FOR INFO.
SQL 2000 installed fine, but with remote connection issues.
Checked the usual
Browser Service running
Permissions
TCP\IP enable
Port enabled in Firewall
SP4 installed server rebooted.
Still no remote connection.
This is all...
September 4, 2013 at 9:44 am
Sorry Steve I think you misunderstood the question.
I have used SQL 2000 many a time as a named instance.
As I haven't worked with SQL 2000 for about 3 years now.
My...
September 3, 2013 at 2:07 pm
Use the Repoting services configuration manager on the system you want to move.
Backup the RS encryption cert . Backup the RS and RSTEMPdb with copy.
Install SSRS on new machice....
September 3, 2013 at 8:06 am
Is there a Domain Policy in effect that stops an account from running as a service.
Is the folder (WINDOWS FOLDER for SQL agent) accessible by the account running the service?
Can...
August 29, 2013 at 9:01 am
Run this...
select * from sys.dm_db_task_space_usage
where internal_objects_alloc_page_count <> 0
See which spid has an high 'internal_objects_alloc_page_count'
and a low 'internal_objects_dealloc_page_count'
then see what these spids are doing.
Do you use Service Broker at...
August 29, 2013 at 8:31 am
There is a lot more work needed if this is to be done properly.
Shrinking the data file is simply a bad idea and a simple index rebuild is not sufficient.
http://www.sqlskills.com/blogs/paul/why-you-should-not-shrink-your-data-files/
from...
August 19, 2013 at 8:12 am
Can't believe no one has pointed out that is not a good idea to shrink Production DBs.
August 19, 2013 at 7:41 am
Viewing 15 posts - 226 through 240 (of 246 total)