Viewing 15 posts - 2,641 through 2,655 (of 5,843 total)
mealies (3/22/2013)
Looked into the SQL stack dumps...
March 22, 2013 at 6:33 am
Given that you are shipping across the internet I would encrypt my backup too. that you cannot do with SQL Server built-in stuff. Either get third party tool...
March 21, 2013 at 9:18 am
I note that some form of index on ID should probably be in place here to help both with concurrency and performance.
March 21, 2013 at 9:15 am
1) I would immediately switch to the FREE, AWESOME, FULLY DOCUMENTED ola.hallengren.com maintenance suite for all SQL Server mx activities!!
2) I would probably switch to a job per database to...
March 21, 2013 at 9:09 am
Red-Gate VR is awesome and could be a big win here. ApexSQL also has a Recover tool that can re-constitute tables, DML actions and recoveries, etc, buy using database/log...
March 21, 2013 at 9:05 am
Steve, I wonder if you don't have too many tempdb files. I have lost track of the number of clients I have come across that cause IO performance problems...
March 21, 2013 at 9:00 am
Rushikesh Ashokrao Bakale (3/20/2013)
SQL server 2000>>SQL Server 2005...
March 21, 2013 at 8:47 am
kavidha (3/20/2013)
Thanks a lot for your reply.
1. No i dont want to use NText...
2. I am not sure about the Single BLOB...so for my scenario, can i use it?...
March 21, 2013 at 8:37 am
tafountain (3/20/2013)
I did not intend to spark a debate 🙂 but here are my responses.
TheSQLGuru (3/19/2013)
1) if you are worried with space, GUIDs have no place in your system.
This statement...
March 20, 2013 at 8:24 am
You MUST read (and follow the guidance from) these and their associated links:
http://www.sqlskills.com/blogs/kimberly/8-steps-to-better-transaction-log-throughput/
http://www.sqlskills.com/blogs/kimberly/transaction-log-vlfs-too-many-or-too-few/
I use them myself and advise every client I have to use them as well.
March 20, 2013 at 7:46 am
Do you have performance problems on the server? Given that you are using only 1% of CPU, I would be surprised if you did. And if you DO,...
March 20, 2013 at 7:42 am
kavidha (3/20/2013)
I am a programmer and need to do the following.
Currently we are using SQL Server 2000 and we are handling lots of resume/cv in .DOC and PDF formats. we...
March 20, 2013 at 7:38 am
1) what is estimated and actual row counts from sproc calls?
2) can you post both actual query plans - the one that gets the seek and the one that gets...
March 19, 2013 at 10:21 am
Eugene Elutin (3/19/2013)
2) why aren't you using NEWSEQUENTIALID??
I don't know why OP doesn't, but me...
I don't use it because it's useless! It does not guarantee sequential order after reboot as...
March 19, 2013 at 8:27 am
Erin Ramsay (3/18/2013)
What about taking the row_number out of vw_BatchItems completely and putting row_number() over (order by DateEntered) in the usp_sel_BatchItems view?
SQL Server 2008R2 build 4266
USE AdventureWorks
go
CREATE VIEW test1 as
SELECT
...
March 19, 2013 at 8:14 am
Viewing 15 posts - 2,641 through 2,655 (of 5,843 total)