Viewing 15 posts - 991 through 1,005 (of 1,047 total)
try:
select name, filename from master.sys.sysdatabases
August 25, 2009 at 7:41 am
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...
August 18, 2009 at 8:24 am
sp_spaceused. Shows you how much space is taken up by your indexes.
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...
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...
August 5, 2009 at 6:51 am
you are correct, fat finger error on my part. I meant to type:
declare @myDate datetime
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...
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...
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...
August 4, 2009 at 1:54 pm
do you have any schedule tasks running, perhaps something using select into?
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...
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.
August 4, 2009 at 1:25 pm
64 bit versions of Windows OS can handle 32GB
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*...
August 4, 2009 at 7:37 am
use a global temp table (insert into ##temp .. )
August 3, 2009 at 1:27 pm
Viewing 15 posts - 991 through 1,005 (of 1,047 total)