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 Wanet Telecoms Ltd 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: chantey
  • Content: Threads
  • Order by date
  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

    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>...
  5. 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?
  6. 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