Viewing 8 posts - 1 through 8 (of 8 total)
I attended the Seattle event earlier this week. I was concerned that it would be a day-long commercial for Red Gate, and due to pressures at work, I almost blew...
November 9, 2012 at 9:16 am
Oops... that delete query should have been this:
DELETE #tblName
WHERE UniqueID IN (
SELECT TOP 10
UniqueID
FROM #tblName
ORDER BY UniqueID
)
November 29, 2006 at 9:46 am
Maybe something like this -- Create a tmp table with a unique identifier, populate the table, then loop through the tmp table based on the unique ID:
CREATE TABLE #tblName (
UniqueID...
November 29, 2006 at 9:44 am
You could also try using the task scheduler. It should give you the option of ending the task after a specified amount of time.
November 29, 2006 at 9:16 am
Maybe something like this:
select *
from tblname
where
floor =
case
when region='east' then ('floor'+'suite'+'room')
when region = 'west' then 'floor'
end
and suite =
case when region = 'west' then 'suite'
when region = 'east' then ''...
November 16, 2006 at 3:41 pm
You may be running into a problem with Parameter Sniffing. Good details in this article:
As a workaround, you could try assigning some local variables with the values passed from the...
November 16, 2006 at 3:27 pm
November 16, 2006 at 3:19 pm
You may be running into a problem with Parameter Sniffing. Good details in this article:
As a workaround, you could try assigning some local variables with the values passed from the variables...
November 8, 2006 at 11:43 am
Viewing 8 posts - 1 through 8 (of 8 total)