Viewing 15 posts - 6,046 through 6,060 (of 19,564 total)
Jeffrey Williams 3188 (7/5/2012)
GSquared (7/5/2012)
July 5, 2012 at 1:32 pm
Jeff Moden (7/5/2012)
July 5, 2012 at 11:03 am
Sean Lange (7/5/2012)
SQLRNNR (7/5/2012)
July 5, 2012 at 10:48 am
Brandie Tarvin (7/5/2012)
SQLRNNR (7/5/2012)
Thanks Brandie. I even like that you posted the script using dbcc timewarp. Notice the publish date is July 24, 2012.:-D
Shhhhh. You're not supposed to...
July 5, 2012 at 10:20 am
It is possible that the removal of those indexes caused your slowdown.
Do you have the indexes scripted so you can re-create them just in case?
Here is another script that I...
July 5, 2012 at 10:19 am
Thanks Brandie. I even like that you posted the script using dbcc timewarp. Notice the publish date is July 24, 2012.:-D
July 5, 2012 at 10:06 am
You can detach and attach. I would not proceed down that path without having a good backup though. I like to proceed cautiously and make sure I have...
July 5, 2012 at 10:03 am
Run this code and replace 'YourDBNameHere' with the name of the database you are working with
DECLARE @DBName varchar(128)
SET @DBName = 'YourDBNameHere'
Select a.database_name,a.backup_start_date
,BackupPath = b.physical_device_name
,BackupSizeMB = a.backup_size/1024/1024
,CompressedBackMB = a.compressed_backup_size/1024/1024
From msdb.dbo.backupset...
July 5, 2012 at 10:00 am
AAKR (7/5/2012)
Hi thanks for quick reply. this script working on sysdatabases onlyI want create user database indexes please provide the script:-)
Thanks in Adavance:-)
Both scripts provided should do what you are...
July 5, 2012 at 9:54 am
SQL Kiwi (7/3/2012)
Ok own up - who chose Pepsi? :laugh:
I should have. That would be the better choice imho.:cool:
July 5, 2012 at 9:40 am
Correct answers:3%(7)
Incorrect answers:97%(262)
Total attempts: 269
July 5, 2012 at 9:38 am
Steve Cullen (7/5/2012)
This must be one of those Monty Python type questions:
Q: What is your name?
A: Steve Cullen
Q: What is your quest?
A: I seek knowledge and...
July 5, 2012 at 9:37 am
crookj (7/5/2012)
Ray K (7/5/2012)
(For the benefit of those outside the USA, that was our Fourth of...
July 5, 2012 at 9:09 am
I would log in as that user from a different location such as your machine. I suspect the user may have a filter being applied in SSMS.
July 5, 2012 at 9:06 am
GilaMonster (7/3/2012)
For anyone not on/not paying attention to twitter.....It seems to be official.... I'm a Microsoft Certified Master for SQL Server 2008.
https://twitter.com/SQLintheWild/statuses/220252281847808001
Congrats
July 3, 2012 at 3:29 pm
Viewing 15 posts - 6,046 through 6,060 (of 19,564 total)