Forum Replies Created

Viewing 15 posts - 991 through 1,005 (of 1,047 total)

  • RE: Configuration for terabyte database

    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.

  • RE: ALTER INDEX

    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.

  • RE: Index Usage

    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.

  • RE: catch a sql server timeout exception

    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.

  • RE: Conversion failed when converting datetime from character string

    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.

  • RE: SQL system SPID experiencing lock timeouts

    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.

  • RE: Index Usage

    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.

  • RE: Conversion failed when converting datetime from character string

    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.

  • RE: SQL system SPID experiencing lock timeouts

    do you have any schedule tasks running, perhaps something using select into?

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: SQL Server DB Slowness, AUTOGROWTH issue?

    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.

  • RE: Conversion failed when converting datetime from character string

    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.

  • RE: SQL 2005 memory and the AWE caveat (i think)

    64 bit versions of Windows OS can handle 32GB

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: handelling of IDENTITY Column in a Table

    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.

  • RE: Insert into #temptable exec(@sql)

    use a global temp table (insert into ##temp .. )

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Audit Triggers - is there a better method

    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.

Viewing 15 posts - 991 through 1,005 (of 1,047 total)