Viewing 15 posts - 1,876 through 1,890 (of 7,429 total)
Sorry about the SET @@ROWCOUNT, brain was on automatic pilot.
Anyway with regards to previous you will do nothing more than create a continual loop on the first bits of...
May 27, 2004 at 5:57 am
I created a table in Northwind named x with an extra Idenitity column and this worked just fine no matter where the extra column was in my table that was...
May 26, 2004 at 12:38 pm
Look at each execution plan as well to see if it uses an index to get it's data as opposed to the table or clustered index. Or if they are...
May 26, 2004 at 12:26 pm
As is in SQL to offer the data you cannot unless you are not showing for all the ouput at all.
May 26, 2004 at 12:04 pm
No and from your query I don't think SET @@ROWCOUNT will help either.
May 26, 2004 at 11:59 am
First I will have to assume all AddressNumbers are > 0 anyway. So try this
WHERE
F06136.YZDTEY >= @FromYear
AND F06136.YZDTEY <= @ToYear
AND (F06136.YZTARA = 'FEDERAL')
AND (F06136.YZPTAX = 'C')
AND (F06136.YZAN8 >...
May 26, 2004 at 11:58 am
Use OPENQUERY
SELECT * FROM OPENQUERY (LINKEDSERVERNAME,'SELECT GETDATE() AS CUR_DATE')
May 25, 2004 at 4:42 am
Try installing the latest MDAC from Microsoft under the site http://msdn.microsoft.com/data/Default.aspx on the machine where this is occurring or the server.
May 25, 2004 at 4:38 am
FOr your situation unless you build a middle ware app that can access at the switch and feed the info back then you setup a SQL instance for them on...
May 25, 2004 at 4:33 am
But Log Explorer will still not see Selects or Executions only logged events.
Your best bet is going to be Profiler in this situation.
May 25, 2004 at 4:24 am
Actually that cn be dependent on several factors including index.
May 23, 2004 at 7:55 pm
Sounds like homework. ![]()
But the question I have is what is the table structure and what data would tell me the vehicle travels thru...
May 19, 2004 at 12:38 pm
Should be, but look at the execution plan and see what it has decided the query as written would use for best performance.
May 19, 2004 at 12:32 pm
It is considered better overall to use the join method.
The reason is it takes some work off the query engine with regards to decisiions it must make when trying to...
May 19, 2004 at 8:25 am
What version and Service Pack level of windows are you running?
May 19, 2004 at 6:23 am
Viewing 15 posts - 1,876 through 1,890 (of 7,429 total)