Viewing 15 posts - 421 through 435 (of 2,647 total)
derek.colley (7/25/2012)
no compressed backups (just two examples of many).
To be picky 🙂 that is only true for 2008 Standard. 2008 R2 allows backup compression in Standard ed.
July 25, 2012 at 10:52 am
ScottPletcher (7/25/2012)
Sean Lange (7/25/2012)
ScottPletcher (7/25/2012)
ALTER TRIGGER UPDate_PONumber
ON dbo.PurchaseOrderDetail
AFTER INSERT, UPDATE, DELETE
AS
UPDATE PON
SET SubTotal...
July 25, 2012 at 10:47 am
BrainDonor (7/25/2012)
Something like SQL Pretty Printer may be of help.There is a desktop version which can convert all files within a folder. A demo is available at http://www.dpriver.com/index.php.
Also, have...
July 25, 2012 at 10:43 am
Another option is poorsql.com Just have them copy and paste the proc, then get the formatted version and copy and paste it back into the editor. I only use...
July 25, 2012 at 10:41 am
Run this:
SELECT DATALENGTH(CAST('555555555' AS NVARCHAR(10)))
NVARCHAR holding 9 characters is 18 bytes. VARCHAR holding 9 characters is 9 bytes.
July 24, 2012 at 3:16 pm
Tim Hiller (7/24/2012)
July 24, 2012 at 2:40 pm
One to start: http://www.sqlskills.com/blogs/joe/post/What-sysdm_db_index_usage_stats-may-not-tell-you.aspx
What if the table has no indexes? What if none of the indexes are used in the query? I understand this is unlikely, but it is...
July 24, 2012 at 1:52 pm
Tim Hiller (7/24/2012)
Thanks for the DMV... that may work for what I'm doing.Can you shed some light on the 'auditing' option ?
What happens when a process is only run once...
July 24, 2012 at 1:41 pm
Daxesh Patel (7/24/2012)
July 24, 2012 at 1:24 pm
Why are you using a wizard for the same version? Why not just backup and restore?
July 24, 2012 at 11:37 am
What does 'referenced' really mean? Without defining that, nobody can help you.
July 24, 2012 at 11:35 am
GilaMonster (7/20/2012)
There's one very fast way to resolve performance problems - hire a specialist to do it for you. 🙂
I hope to be that "specialist" in a couple of years...
July 20, 2012 at 4:37 pm
GilaMonster (7/20/2012)
Grant Fritchey (7/20/2012)
I'd suggest checking out the Troubleshooting SQL Server[/url] book (which Gail also contributed to).
It's covered in Chapter 1 and 6, and probably most of the others...
July 20, 2012 at 4:31 pm
July 20, 2012 at 4:07 pm
Ok, let me ask you this... How much data do you have on a monthly basis? How many months worth of data do you have? I ask because...
July 19, 2012 at 10:09 pm
Viewing 15 posts - 421 through 435 (of 2,647 total)