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 bkrike 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: *

  • Users: ziploc1010
  • Content: Threads
  • Order by date
  1. 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`...
  2. 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...
  3. 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.
  4. 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.
  5. 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
  6. 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...
  7. 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?
  8. 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