Viewing 15 posts - 616 through 630 (of 3,011 total)
Something that drives PLE is the need to bring data into memory when queries scan large tables.
If you have several tables that are larger than available memory and you run...
February 15, 2012 at 7:44 pm
SQL Server Books online should be able to answer most of your questions.
Read-Only Filegroups and Compression
http://msdn.microsoft.com/en-us/library/ms190257(v=sql.100).aspx
February 13, 2012 at 11:13 am
Did you investigate to see if the queries are actually being blocked?
Inserts can still cause problems with read uncommitted isolation, so you would be better off staying away from it.
If...
February 13, 2012 at 8:30 am
Many types of blob data are already compressed, for example, a .PDF file. Other types of blob data are not compressed.
There is no tool that can compress data that...
February 13, 2012 at 8:15 am
At a certain point, you have to look at security vs. utility. The safest airplane is one that never leaves the ground, but it's not very useful.
There is no...
February 11, 2012 at 10:46 pm
Your error sounds like an SSIS error, not a TSQL error.
This is a TSQL solution:
select
TrimmedString= right(DT,19),
[Date]= convert(datetime,right(DT,19))
from
( -- Test Data
select DT ='Mon Jan 4 15:50:49 2010'union all
select DT ='Tue...
February 10, 2012 at 2:08 pm
Besides removing duplicate indexes, you should also look at removing unused indexes.
People often create indexes without knowing what the index will do for them, so they just use space, CPU,...
February 9, 2012 at 4:25 pm
Is SQLIO failing on the step where if first creates the workfile, or on a later step?
As another type of workaround, you could let SQLIO create the workfile on a...
February 7, 2012 at 2:49 pm
You can probably only get help if you show the SQLIO command being executed, and the contents of the param file.
Also, did you verify that the C drive has enough...
February 3, 2012 at 5:22 pm
And since your running BCP from the CMDSHELL, remember that the c:\test.txt file will be on the server you are running it on, not on your PC.
February 1, 2012 at 10:54 am
You just have to give SQL Server enough memory to hold the entire database in memory, and it will take care of the rest.
January 31, 2012 at 12:49 pm
Rob-350472 (1/30/2012)
I seem to recall looking into this before (ages ago) because it sounded attractive but...
January 30, 2012 at 10:49 am
I worked at a company once where they did a survey of IT workers and end users to see how IT was doing. The senior IT management thought that...
January 30, 2012 at 9:00 am
SQL Kiwi (1/30/2012)
...Code that has NOLOCK on every single table in every single query is an infallible indicator of poor coding, in my experience.
I mostly agree with this, except that...
January 30, 2012 at 8:40 am
You need to see how the tempdb space is being used.
Run these queries to check the current usage.
print 'Check usage of tempdb'
select
[Version Store Pages Used] =
sum(version_store_reserved_page_count),
[Version Store Space MB] =...
January 25, 2012 at 11:59 am
Viewing 15 posts - 616 through 630 (of 3,011 total)