Viewing 15 posts - 12,721 through 12,735 (of 18,923 total)
Why can't you just do a single insert statement??
October 5, 2005 at 7:12 am
Select SERVERPROPERTY('ProductLevel') AS SpLevel
October 5, 2005 at 7:11 am
Can we see the code? maybe there's a way to use a proc instead of dynamic sql.
October 5, 2005 at 7:09 am
No I mean a global SavedSearchResults table with something that identifies the search (UserID, SearchID, GUI, RowID). Then you can easily use that table to requery the next results...
Select...
October 5, 2005 at 6:44 am
Pretty much what I originally thaught (thanx for the dbcc command)
.
Let's say they still chose per user licensing, how are the 10 licenses managed...
October 5, 2005 at 6:24 am
How about caching the GUI into a results table (with identity or what method of generating it). Then query back from that tables and then generating the requested results?
October 4, 2005 at 3:10 pm
How many rows are returned from a single search (normally)?
October 4, 2005 at 2:55 pm
Split it into 3-4 parts.
then exec (@Select + @From + @Where + @OrderBy)
October 4, 2005 at 2:47 pm
Ya it would... I had this working but the requirements were somewhat different. Depending on how long it takes to search and how many times the searches are hit,...
October 4, 2005 at 2:40 pm
You can do it like this :
Select top 20 * from () dtSearh where GUI > @LastShownResult
October 4, 2005 at 2:18 pm
Restore the file to another server and then you'll be able to query it. Check out BOLS for the syntax.
October 4, 2005 at 2:12 pm
Why can't you handle that client side?
October 4, 2005 at 2:08 pm
SELECT StoreName,SUM(NetSale * 1.0) AS sales
FROM Orders
October 4, 2005 at 2:05 pm
I have no clue what you are talking about...
Can we have the tables definition, sample data and expected output please ?
October 4, 2005 at 1:25 pm
Viewing 15 posts - 12,721 through 12,735 (of 18,923 total)