Viewing 15 posts - 10,366 through 10,380 (of 18,923 total)
Ya like for a homepage... if you were to count out the owner's visit, there would be very little need for the counter
.
January 9, 2007 at 12:54 pm
Agreed. I also support this site, but I don't see much of the money that comes in every month
.
January 9, 2007 at 12:52 pm
That's what I said. You can't do that without running it. Maybe you can do a general table with 100 varchar columns and insert into that... but that won't come...
January 9, 2007 at 12:50 pm
We can't really help unless you provide some sample data and the required output. Once we have that we can get started on a solution.
January 9, 2007 at 12:18 pm
Do you guys have extacly the same databses on both servers?
Did you try dropping the executions plans and rerunning.
Does it do that on every execution or is is bad only...
January 9, 2007 at 12:15 pm
Select Main.* FROM dbo.Tbl Main INNER JOIN (SELECT SSN, MAX(Date) AS Date from dbo.Tbl GROUP BY SSN) dtLast ON Main.SSN = dtLast.SSN AND Main.Date = dtLast.Date
January 9, 2007 at 12:12 pm
No you can't do that... because the sp can have more than 1 result set at the same time, also it can have different results set at each run.
The only...
January 9, 2007 at 12:09 pm
Tried the old compact/repair?
What happens if you copy those tables to a new access DB and rerun the query?
Last resort.... tried recompiling the application?
January 9, 2007 at 11:52 am
Yes, different OS use different row delimiter. IIRC unix use char(10). While windows uses Char(10) + Char(13). Some other might use Char(13) only.
Just paste the char(10) from the clipboard and...
January 9, 2007 at 11:14 am
Search the articles on this site.. you'll find quite a few.
January 9, 2007 at 11:08 am
There's your answer...
(rptPXA2.DCode) = 1
==
Char(9) = int
===
see rest of my previous explanation for the error.
Once you try with '1' it'll work.
Good afternoon.
January 9, 2007 at 11:08 am
I guess that if you build the whole string in dynamic sql, it'll work then using something like this.
...
'rowdelimiter = ''' + char(10 + '\n'''
Maybe there's another way but I...
January 9, 2007 at 11:06 am
I see at least 10 converts in your execution plan. So the server obviously thinks otherwise.
BTW varchar(9) <> nvarchar(9) <> [n]char(9).
Is there any collations differences between the tables or between...
January 9, 2007 at 10:53 am
You'd be better off to use IF EXISTS. It'll return true or false instead of the row count. On small table it's not a big problem but those things add...
January 9, 2007 at 10:49 am
Viewing 15 posts - 10,366 through 10,380 (of 18,923 total)