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 strongm 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. focusdev

    How to change XML attribute using Javascript?

    Nevermind, I think I figured it out. var myXML = document.getElementById('daxml'); var desc = myXML.selectSingleNode("//group/item/desc"); desc.setAttribute('listing','234');
  2. focusdev

    How to change XML attribute using Javascript?

    I need to change an attribute located in my xml using javascript but can not seem to find how to do it. <html> ... <xml id=daxml> <group> <item> <desc listing='123'> </item> </group> </xml> In the above sample, I need to change listing to 234. Any ideas?
  3. focusdev

    Web Development Tools

    I wasn't aware that eclipse worked with html. I'll have to find the extension for this and check it out. I've been doing all of my html by hand (and probably will continue to do so) for my professional development... but who knows. I would also agree that Eclipse would be too much to handle...
  4. focusdev

    Web Development Tools

    I'm looking at taking over a website for an NFP organization which was developed with FrontPage. Since I don't own FrontPage, and it appears to have been discontinued by Microsoft, I was wondering what all of you might recommend. The tool must be easy to use as when I deliver the site to...
  5. focusdev

    HTTP Authenticate via JS

    PixPocket, Have you looked into using XMLHttpRequest? The open method for this allows credentials to be passed. XMLHttpRequest.open(sMethod, sUrl [, bAsync] [, sUser] [, sPassword])
  6. focusdev

    Custom Graph Colors

    In the graph stylesheet, see if you can find the following calls and change them, or add them. setSeriesFillColor(0,new Color(255,0,0)); setSeriesFillColor(1,new Color(0,255,0)); This will set the first sieries color to red and the second to green.
  7. focusdev

    Matrix Report

    Try TABLE FILE MYFILE SUM FIELD_VALUE BY PRODUCT BY STATUS ACROSS MONTH END
  8. focusdev

    help joining files with different key data types

    Thanks MrcLogde - that worked perfectly.
  9. focusdev

    help joining files with different key data types

    when using trim and char, I still get a -420 22018 Character in CAST argument not valid
  10. focusdev

    help joining files with different key data types

    I'm trying to join two tables together where the key from the host table is a two digit number stored in packed format, and the secondary table is a four digit number stored in a char(10) field. For example, the value from the host would be 23 and the value that it would match to in the guest...
  11. focusdev

    COLUM TITLE VERTICAL ORIENTATION

    As long as the output is HTML you could use a css stylesheet. TABLE FILE HTMP0003 SUM C_AVG_READ AS 'Prom de READ' OVER c_avg_proc as 'Prom de PROC' BY MES ACROSS LOG_DESCRIPTION AS '' ACROSS-TOTAL ON TABLE SET HTMLCSS ON ON TABLE SET CSSURL ON TABLE SET CSSURL '/css/mystyle.css' ON TABLE...
  12. focusdev

    COLUM TITLE VERTICAL ORIENTATION

    Try TABLE FILE CAR PRINT WHAREVER AS 'C,O,L,,1' END
  13. focusdev

    User query results in another query

    If you create a master for FAILED_LOGONS, then you can join the results back to the db2 table. Otherwise, you could probably make the data1 file comma delimited for the in statement, by using ON TABLE HOLD AS DATA1 FORMAT COM. SQL DB2 SET SERVER DB2_SERVER SQL DB2 Select USERNAME from...
  14. focusdev

    Create Procedure to Populate Drop-Down List

    You need to return two values, one for the actual value and the other for the display value. The result then needs to be returned in XML format. TABLE FILE MYFILE PRINT DST.DISPLAY_VALUE BY KEY_VALUE ON TABLE SET HOLDLIST PRINTONLY ON TABLE PCHOLD FORMAT XML END
  15. focusdev

    need help getting server started on unix - shared pool memory issue

    Just to keep the thread complete - I did find how to start isqlplus. The following path is what oracle defaulted to durring installation, but the command is /u01/app/oracle/product/10.1.0/db_1/bin/isqlplusctl start
  16. focusdev

    need help getting server started on unix - shared pool memory issue

    Ken, Correct me if i'm wrong, but isqlplus is an application that is run through an http listener on port 5560 and would have nothing to do with how I logged in. If I were to open up port 5560 on the firewall, I should be able to use isqlplus from any computer on the network without actually...
  17. focusdev

    need help getting server started on unix - shared pool memory issue

    Thanks Mufasa, I tried to find the initorcl.ora file for the pfile setting but could not find it. I did find the memory setting in the initdm.ora file and tried that but it stated that the database name was invalid or missing. Just on a hunch, I tried just the startup command by itself and...
  18. focusdev

    need help getting server started on unix - shared pool memory issue

    I'm a newb to both oracle and linux, but I just installed oracle 10g on linux last night and everything seemed to be working fine until I tried to bring the oracle db back up today. After entering the following command (which I assume starts oracle) STARTUP OPEN PFILE=$ORACLE_HOME/dbs/init.ora...

Part and Inventory Search

Back
Top