Viewing 15 posts - 13,321 through 13,335 (of 18,923 total)
select * from with (nolock) inner join dbo.cataddon_reportquery with (nolock) on cataddon_reportquery.userid = .loginname
September 13, 2005 at 7:19 am
I told steve about this and got an answer back that they were working on it...
September 13, 2005 at 7:03 am
Maybe the title "Execute the Output of a stored proc" threw you off
.
At any rate, the only to fight this fire is with...
September 13, 2005 at 7:00 am
You didn't remember that post from raj's thread??
September 13, 2005 at 6:51 am
It's a good thing that my name is also ray because I posted the exact same comment 20 mins before him.
September 13, 2005 at 6:50 am
Let me rephrase that. Won't allow the server to use an index SEEK.
September 13, 2005 at 6:41 am
Here's a full demo of such a task.
The other option would be to use something like a cursor or a while loop.
IF object_id('Data') > 0
DROP TABLE dbo.Data
GO
IF object_id('Target') >...
September 13, 2005 at 6:32 am
Can you post some sample data and the required output... will be hard to answer without that.
September 13, 2005 at 6:29 am
Yes there is :
dateadd(D, 0, datediff(d, 0, getdate()))
also don't use a function on a column on a where condition. You don't allow any indexes to be used in...
September 12, 2005 at 11:31 pm
update tablename set fieldname = replace(replace(fieldname, '-', ''), '-', '')
September 12, 2005 at 11:29 pm
select * from table1 where date >= '08-09-2005' and date < '09-09-2005'
September 12, 2005 at 10:14 pm
It might very well be that, but I didn't keep the original code so it's hard to pinpoint the problem after the fact. But thanx again for the info.
September 12, 2005 at 10:12 pm
Viewing 15 posts - 13,321 through 13,335 (of 18,923 total)