Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. lemkepf

    How can I speed up a dataview.rowfilter call?

    Nevermind... i was just playing around with this and ended up using a hashtable instead of a datatable for my second table. Then instead of doing a filter i just looked up the key. It basically cut the rendering time down to about 65 seconds. Anyways, thanks for the help! I think the 15 users...
  2. lemkepf

    How can I speed up a dataview.rowfilter call?

    I guess i don't understand what your trying to get at... why would i care what columns to show? I looked at the repeater and it's basically a datagrid... just without the formatting built it. I still have to take my second dataset and filter on that to get my scaled down record set to bind to...
  3. lemkepf

    How can I speed up a dataview.rowfilter call?

    How would i alter how it's outputted?
  4. lemkepf

    How can I speed up a dataview.rowfilter call?

    You have to remember how nested datagrids work. i have 2 tables. The first table get's bound to the main datagrid. As each row executes it's "itemdatabound" method it takes that second table and says... ok, find me all the records in this table that corespond to the primary key of the first...
  5. lemkepf

    How can I speed up a dataview.rowfilter call?

    That's the thing... i already do the database filtering stuff when they are paging through the result set. But... when they want to print it, i'm basically have 2 really big data tables. The second table get's filtered on every row that exists in the first one table. I already provide a way to...
  6. lemkepf

    How can I speed up a dataview.rowfilter call?

    Hello .net gurus, Some quick backgroud on my asp.net app: I have a datagrid and a nested datagrid within it. I've built in paging, sorting, etc. The problem is the users would like to be able to print out the whole list. So i created a page that doesn't use any paging. This works great for...
  7. lemkepf

    p3 1.1ghz? or p3 1.13ghz?

    From what i gather from here about that compaq mother board it does support FSB 133mhz. http://www.thehistoryofcomputers.com/items/3462287120.html Here are some prices for a 1.13 with 133mhz fsb: http://www.pricewatch.com/h/prc.aspx?i=3&a=4209&f=1 and some for 1ghz 100mhz fsb...
  8. lemkepf

    p3 1.1ghz? or p3 1.13ghz?

    That's what i figured between the celeron and p3. What about the 1100mhz they told me to get? Do you think they mean a 1130mhz cpu? Thanks again!! Paul
  9. lemkepf

    p3 1.1ghz? or p3 1.13ghz?

    I have an old Compaq 5080us with an 800mhz celeron inside. I'm looking to upgrade the ram and the CPU for my wife to use. I talked to compaq about the PC and they told me that the motherboard could take up to a p3 1100mhz cpu... problem, where can i find an 1100mhz cpu? Do you think they mean...
  10. lemkepf

    List all roles a user is in?

    Hello all! I have a quick question.... Does anyone know how to list all the roles a user is in without having to do: if user.isinrole("admin") then Response.write("Is admin") end if If users.isinrole("blah") then etc... I can't seem to find anything like that. Any help is appreciated! Paul
  11. lemkepf

    one query to tell if a value exists in one of two tables?

    Hello SQL gods, once again i'm in need of some help. I have 2 tables. One holds old and discontinued values, one holds new values(the values can't be in both). I need to write a single select query (more like an existence test) that will return true if the value is in one of the two tables...
  12. lemkepf

    Execute oracle stored procedure from DTS (no parameters)

    Try it the way i suggested and it should work beautifully. (if it doesn't, try the MS provider.) Paul
  13. lemkepf

    Execute oracle stored procedure from DTS (no parameters)

    Here is the exact call i used: {call ADM.PKG_PROD_DESC.PRO_UPDATE_DESC()} Just have an oracle connection, and execute that SQL statement in it. Simple enough... Paul
  14. lemkepf

    Execute oracle stored procedure from DTS (no parameters)

    let me get to work today and i'll post it....
  15. lemkepf

    Scroll large image in frame by "grabbing it" and moving your mouse?

    Hello all, i'm writing up a page that basically is a simple gallery page for some of our larger pictures. (2 frames, top holds the controls to move between pictures, bottom just has the image in it) I was wondering if anyone knows of a script that can be used to "Scroll" that bottom...
  16. lemkepf

    Execute oracle stored procedure from DTS (no parameters)

    It's sooo simple! You call the stored procedure the same way you execute it in ADO. sooo.... {call PACKAGENAME.STOREDPROCEDURENAM()} Hmmm... that doesn't look right. I'm doing this off the top of my head. Let me write back when i get to work with the right command structure. Paul
  17. lemkepf

    dictionary object holding multiple dictionaries?

    Hello all! I'm wondering if this is possible? Basically i need to create a 3 dimensinal array, but i have to be able to refernce the variables by name, not number. I think i have been able to declare a dictionary object inside of another, i'm wondering how i would get the values back? kinda...
  18. lemkepf

    Execute oracle stored procedure from DTS (no parameters)

    Hello DTS gods! I come before you again with a question... Were trying to create a DTS pacakge on our SQL server to push some data over to Oracle, then when the push is done, execute an exising oracle stored procedure to move that data around and do some funky stuff with that. After reading...
  19. lemkepf

    Stored procedure return multiple collections?

    Hey all! Now i'll let you know i have no knowledge of oracle at all. (i'm asking this because our oracle guy is out of town for like 3 weeks and we need an answer ASAP). We have an ASP page we are using to get information out of oracle. Right now we are just executing simple select statements to...
  20. lemkepf

    create columns based on anothers tables rows?

    OK, well that's not the way i would like to do it, i guess it's really the only way (unless i wanted to do some really funky statements). I wouldn't have to alter the table unless something had changed inthe other one, so i don't think it should be a problem if many users access it (besides...

Part and Inventory Search

Back
Top