Viewing 15 posts - 991 through 1,005 (of 1,047 total)
I would be looking at using a storage array for that size. However Before I could comment on architecture I would need to know what sort of data it...
The probability of survival is inversely proportional to the angle of arrival.
August 18, 2009 at 8:24 am
sp_spaceused. Shows you how much space is taken up by your indexes.
The probability of survival is inversely proportional to the angle of arrival.
August 18, 2009 at 8:15 am
Tara, Just because there is an index on a column does not mean it will be used. It depends upon the query plan and the selectivity of the index...
The probability of survival is inversely proportional to the angle of arrival.
August 5, 2009 at 7:04 am
Sounds like the query timeout value should be increased. What other activity is going on on the server during the time the SP is executed by the application? Queries that...
The probability of survival is inversely proportional to the angle of arrival.
August 5, 2009 at 6:51 am
you are correct, fat finger error on my part. I meant to type:
declare @myDate datetime
The probability of survival is inversely proportional to the angle of arrival.
August 4, 2009 at 2:53 pm
select into holds locks on various systems tables until the query completes. If the query is a long drawn out one it could result in other processes timing out like...
The probability of survival is inversely proportional to the angle of arrival.
August 4, 2009 at 2:44 pm
it can be used pretty much directly if the like is of the form "column like 'begins with%'"
if its like this: "column like '%something%'" then it can't be...
The probability of survival is inversely proportional to the angle of arrival.
August 4, 2009 at 2:21 pm
that would be equivalent to '7/9/1998'. It looks okay to me, perhaps a localization setting. I give up, except perhaps try this:
declare @myDate
set @myDate = '7/9/1998 12:00:00 AM'
select @myDate
tell...
The probability of survival is inversely proportional to the angle of arrival.
August 4, 2009 at 1:54 pm
do you have any schedule tasks running, perhaps something using select into?
The probability of survival is inversely proportional to the angle of arrival.
August 4, 2009 at 1:50 pm
are you backing up the transaction log? If not, set the recovery mode to simple. If it is just in your QA environment you may not need to be...
The probability of survival is inversely proportional to the angle of arrival.
August 4, 2009 at 1:28 pm
hopefully #STARTDATE# contains a valid character representation of a date and/or time. IIRC Access requires the date to be bracketed by '#', SQL Server does not.
The probability of survival is inversely proportional to the angle of arrival.
August 4, 2009 at 1:25 pm
64 bit versions of Windows OS can handle 32GB
The probability of survival is inversely proportional to the angle of arrival.
August 4, 2009 at 8:30 am
In the vast majority of cases properly normalized database will always perform better than un-normalized database. Yes, it is true that in special circumstances a certain amount of de-normalization *can*...
The probability of survival is inversely proportional to the angle of arrival.
August 4, 2009 at 7:37 am
use a global temp table (insert into ##temp .. )
The probability of survival is inversely proportional to the angle of arrival.
August 3, 2009 at 1:27 pm
Put those audit columns in a separate table. Each row would have a date_time, a userID and a type (create, updated etc.) and a column (ID probably) to link back...
The probability of survival is inversely proportional to the angle of arrival.
August 3, 2009 at 10:56 am
Viewing 15 posts - 991 through 1,005 (of 1,047 total)