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. chantey

    XSLT 1.0 and XSLT 2.0

    Hi, I was wondering if anyone is able to tell me the key problems with XSLT 1.0 and what changes have actually been implemented in XSLT 2.0
  2. chantey

    Dynamic sorting of elements

    Hi guys, Im still fairly new to XML and need help on the following problem. I know how to sort elements alphabetically using my XSL stylesheet. All I do is use <xsl:sort> in the template. I want some buttons or links on my XML page that will dynamically change the sort order. For example, if...
  3. chantey

    How to use ATTLIST?

    Hi, I have the following DTD and XML data. It uses ATTLIST to describe the attributes of 'name'. I want to display the attlist contents using an XSL file. For example, using the XSL template, I need it to be displayed as: Fred 25 15th Dec 1962 0123428374 Is this possible? A sample of the...
  4. chantey

    Linking DTD and XSLT help needed!

    Care to give an example?
  5. chantey

    How to enforce DTD?

    Internet Explorer will not automatically validate (check) your XML for you, you need a special validator which will do it. Here's a site that does it for you... http://www.stg.brown.edu/service/xmlvalid/ Just enter the location of the file and it will find any mistakes for you.
  6. chantey

    Linking DTD and XSLT help needed!

    You don't seem to understand the concept yourself. Your question doesn't make any sense. Not sure exactly what you require.
  7. chantey

    Listing multiple attributes differently. Need help

    Hi, I have the following extract from my XML: <bookentry> <authorgroup> <author> <firstname>Rebecca</firstname> <surname>Mills</surname></author> </authorgroup> </bookentry> <bookentry> <authorgroup> <author> <firstname>Gary</firstname>...
  8. chantey

    Create a view AS....?

    I need to know how to create a table/view using an already existing table. Is it possible to use something like: CREATE VIEW newTable AS SELECT * FROM oldTable WHERE field1 = 1; Which will then allow me to use SELECT * FROM newTable; Any ideas?
  9. chantey

    Difficult select statement

    To be more specific, here is the table BOOKING +------------+-------------+----------------+------------+ | car_ref_no | mechanic_id | job_name | date | +------------+-------------+----------------+------------+ | CR3 | 1 | Brake Pad | 2000-02-28 | | CR6...
  10. chantey

    Difficult select statement

    It's version version: 3.23.58-nt If it doesn'y support subqueries, is there another way of doing it without using them?
  11. chantey

    Difficult select statement

    I have the set of tables: MECHANIC (mechanic_id, name, competence_level) CAR (car_ref_no, make, model, owner_name, value_category, car_reg_no) BOOKING (car_ref_no, mechanic_id, job_name, date) And I need to list the car_reg_no and make of any car that was worked on by all the mechanics. For...

Part and Inventory Search

Back
Top