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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ziploc1010

  1. ziploc1010

    Order By Clause does not use composite index

    The limit clause was only for testing, and I will need to run the query with only the order by clause. I do not know why the query will not use the index with two fields. I tried recreating the index with one field and it still did not work. I also tried recreating the index with only 500...
  2. ziploc1010

    Order By Clause does not use composite index

    Hi, I have created a composite index with the following query: CREATE INDEX `idx_Object-id_all` ON `Object-id` (id, str); When I try to select from the `Object-id` table, it does not allow me to use the index and applys a filesort. explain select id, str from `entrez_gene`.`Object-id`...
  3. ziploc1010

    httpd security

    Hi, I am running Apache 1.3.28 on one of my university campus computers. I can http,ftp,telnet to this server fine from any other computer on campus. When I am off campus, I can only telnet and ftp to the server. However, I cannot http to it. I only get a 404 error, and there is no record of...
  4. ziploc1010

    PL-SQL Cursors v. Tables

    What is the difference between PL-SQL Cursors and Tables? I'd like to use a PL-SQL procedure that returns the result from a couple of queries. However, it is not working w/ using an out variable of ref cursor type.
  5. ziploc1010

    DHTML Tables w/ Netscape

    How would one change the innerHTML of a td in Netscape?
  6. ziploc1010

    regsub, uppercase to lowercase

    My wish is to use the regsub command to convert all characters from uppercase to lower case. I cannot use the [string lower ... ] operation, b/c I don't want to put everything to lowercase, only a specific portion of text.
  7. ziploc1010

    Storing timezones

    I would like to store info in a date/time field. However, in addition to the date and time, I also need to know what timezone this info is associated with. Is there a way to also store a time zone in a date/time for a field? Thanks in advance, Matthew
  8. ziploc1010

    CSS, Inheritance tags

    Wow that's really cool. Is there any way to go down more than one level with classes? Such as: A { font-family: arial; font-weight: normal; font-size: 12pt; color: blue; } A.specialA { font-weight: bold; font-size: 13pt; text-decoration: underline; }...
  9. ziploc1010

    CSS, Inheritance tags

    I'd like to add some css to my anchor tag. To do this, I would: <style type=&quot;text/css&quot;> A { font: 13pt/15pt &quot;Arial&quot;; } </style> But what if I wanted a special anchor tag? I don't want to change my style for every anchor tag. So is it possible to create a new...
  10. ziploc1010

    DHTML Scrollbars

    Thanks again Klae. I heard the overflow definition was specific to IE. Is there a way to get this to work w/ Netscape, also?
  11. ziploc1010

    DHTML Tables w/ Netscape

    Thanks Klae, that will come in handy. Is the <ilayer> tag specific to Netscape 6, or will it work in 4.x , also?
  12. ziploc1010

    DHTML Scrollbars

    I want to make a scrollbar on my page to use. This is b/c I don't want to show all of an image at once. Is it possible w/ DHTML to make this image scrollable?
  13. ziploc1010

    DHTML Tables w/ Netscape

    Does Netscape have the compatibility for: <td id=tdName ... > b/c my code works in Internet Explorer, but it won't bring up my table in Netscape. If Netscape isn't compatible w/ this, is there any way to change the background of a td dynamically?

Part and Inventory Search

Back
Top