DBMS_XMLGEN PKG help

Hi Guys,
I am using dbms_xmlgen pkg to generate an XML off of my view. The problem I am having is when there is no date, there is no XML generated. What I really want is that regardless of case, xml should contain tags. I have tried following code but still no luck:
....more code...
ctx := dbms_xmlgen.newContext('Select * from my_db_view');
  dbms_xmlgen.setCheckInvalidChars(ctx, TRUE); 
  dbms_xmlgen.setRowSetTag(ctx, pcXML_OUTER_TAG);
  dbms_xmlgen.setRowTag(ctx, NULL);  
  dbms_xmlgen.setNullHandling(ctx, 2);    
  xmldoc:= dbms_xmlgen.getXML(ctx);   
dbms_xmlgen.closeContext(ctx);
....more code...

Nimish Garg wrote:
this may help you
http://nimishgarg.blogspot.com/2010/11/generate-xml-of-output-of-query.html
Not really, it still does not produce XML when no data is retrieved. (But again you had me fooled into entering your blog)

Similar Messages

  • DBMS_XMLGEN attributes - HELP!!

    I am using DBMS_XMLGEN to create purchase order xml documents.
    Nested objects types are used to represent the complex structure required.
    I know that by using the '@' symbol as a prefix to an attribute name, that field will become an attribute of the enclosing XML structure.
    For example:
    CREATE OR REPLACE TYPE OrderTypeTyp As OBJECT ("@code" VARCHAR2(50),
                                  "OrderType" VARCHAR2(50))
    leads to this XML:
    <OrderType code="UPD">
    <OrderType>Update</OrderType>
    </OrderType>
    However, I cannot produce an element at the bottom of the XML hierarchy that has both an attribute and a value - this is what I want:
    <OrderType code="UPD">Update </OrderType>
    Any ideas? Preferably without stooping to String Manipulation!
    Any help would be greatly appreciated.
    Russell Hicks

    Nimish Garg wrote:
    this may help you
    http://nimishgarg.blogspot.com/2010/11/generate-xml-of-output-of-query.html
    Not really, it still does not produce XML when no data is retrieved. (But again you had me fooled into entering your blog)

  • An error occurred while running scripts from the package "ztb343812063996219254.pkg

    i tried to upgrade my os lion 10.7.5 to os x yosemite on my macbook pro and in the middele of downloading I'm getting this notice: an error occurred while running scripts from the package "ztb343812063996219254.pkg
    help me please…..
    i think i have problem with the app store cause sometimes I'm getting more errors like error no 13 or 100
    what should i do?

  • I CAN-NOT install anything from a .pkg

    i CAN-NOT install anything from a .pkg
    i need help
    someone
    when i try to install i get this at the end
    "there were errors installing the software"
    "please try installing again"
    also in disk utility
    i get this
    "invalid file or directory ID found"
    "the volume HD needs to be repaired"
    "Error: the underlying task reported failure onn exit"
    and when i try to repair it from the MAC OSX disk i cant
    i get
    "Error: the underlying task reported failure onn exit"
    also i cant install the BSD as it is a .pkg
    HELP
    Mac mini   Mac OS X (10.4.5)  

    Hi, shoaib.
    You wrote: "also in disk utility i get this
    "invalid file or directory ID found"
    "the volume HD needs to be repaired"
    "Error: the underlying task reported failure onn exit""The disk directory of your hard drive is corrupted. This is the source of your problems.
    If you cannot afford either of the third-party utilities:
    • Alsoft Disk Warrior 3.x (DW3)
    • Micromat TechTool Pro version 4.1.x (TTP4).
    then you will need to follow the instructions in "Disk Utility reports 'Underlying task reported failure' when repairing a volume."
    Specifically, given that your attempt to repair the disk using Disk Utility from your Tiger DVD failed, there are no other solutions available for this problem other than:
    • Attempting repair with the third-party disk utilities cited above.
    • Backing up whatever data can be saved, then reinstalling Mac OS X with an Erase and Install.
    See the article I cited above for details. Sorry to be the bearer of bad news.
    To avoid having to reinstall in situations like this, as funds permit you should consider investing in:
    • Implementing a comprehensive backup and recovery solution. For advice on the backup and recovery solution I employ, see my "Backup and Recovery" FAQ.
    • Alsoft DiskWarrior and TechTool Pro.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • How to read XML data stored in CLOB in Concurrent prog Output

    Hi All,
    I'm trying to Generate the XML Data as concurrent Program output. I have a PL/SQL package which generated the XML data by using SQL/XML functions. I'm storing the generated XML data in a CLOB variable. But when i try to read the data using fnd_file.put_line(fnd_file.OUTPUT,XML_Data) it doesn't display data more than 32767 bytes.
    Please help me out to understand what could be done to read the data in chunks. I have tried many logic's to print chunks of data but the output tags are either chopped off and errors out saying Tag not found.
    My logic is as below:
    v_handler:= DBMS_XMLGEN.newContext(v_xml_query);
    --Sets NULL handling options
    DBMS_XMLGen.SetNullHandling(v_handler, dbms_xmlgen.EMPTY_TAG ) ;
    --Set special character handling
    DBMS_XMLGEN.setConvertSpecialChars(v_handler, TRUE);
    -- Specified whether to use an XML attribute to indicate NULLness of particular entity in the XML document
    DBMS_XMLGen.useNullAttributeIndicator(v_handler,TRUE);
    -- set Checking invalid chars
    DBMS_XMLGEN.setCheckInvalidChars(v_handler, TRUE);
    -- get the xml data as required
    v_xml_data:= DBMS_XMLGEN.getXMLtype(v_handler);
    SELECT XMLROOT(v_xml_data.extract('/*'),VERSION '1.0').getClobVal() into v_new_xml_Data from dual;
    -- get the length of the xml generated
    v_clob_len := dbms_lob.getlength(v_new_xml_Data);
    FND_FILE.PUT_LINE(FND_FILE.LOG,'The Clob length is :'|| v_clob_len);
    -- logic to process string more than 32767 Processing by each character
    v_offset :=1;
    while (v_offset <= v_clob_len)
    LOOP
    v_char := dbms_lob.substr(v_new_xml_Data, 1, v_offset);
    IF (v_char = CHR(10))
    then
    fnd_file.new_line(fnd_file.output, 1);
    else
    fnd_file.put(fnd_file.output, v_char);
    end if;
    v_offset := v_offset + 1;
    END LOOP;
    FND_FILE.PUT_LINE(FND_FILE.LOG,'The offset is :'|| v_offset);
    FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
    THe above logic is for character by character which is a performance burden? Please let me know if there is any other work around for this

    Hi,
    Thanks for Replying. I have refered http://blog.oraclecontractors.com/?p=69 and then i added that piece of code. Basically, i'm trying to generate a report using XML publisher. To generate the XML data i'm writing a pl/sql package with SQl/XML functions. DBMS_XMLGEN would help me convert the XML Data as is. When the concurrent program runs this XML data will merge with RTF layout and generate required report. I'm able to generate the Report for data less then 32767 bytes. More than the limit i need to pass chunks of XML data to read as output. That's the reason i'm using fnd_file.output. But it reads only 32767 size at a time.
    WHen i use the given logic, it works perfectly fine, but it loops for each character, for example if you have 30,000 characters it loops the same, which is peformance burden.
    So i tried to write the logic of chunks but still i get the error that XML tag is not found or missing. I'm hoping this is very common issue, but after all my trails, i didn't find the right solution.
    the other logic i tried was :
    v_new_xml_data varchar2(32767)
    v_iterations := CEIL(v_clob_len/v_chunk_length); -- v_chunk_length is 32767 and v_clob_length is length of the XML data stored inthe clob variable
    For i in 0..v_iterations
    LOOP
    FND_FILE.put_line (fnd_file.log,'the loops v_pos :'||i||' and v_clob_length :'||v_clob_len);
    v_new_xml_data := DBMS_LOB.SUBSTR ( V_XML_DATA,v_chunk_length,(i*v_chunk_length)+1);
    FND_FILE.PUT_LINE (FND_FILE.OUTPUT,v_new_xml_data); -- read the output for every 32767 chunks
    FND_FILE.PUT_LINE(FND_FILE.LOG, 'Chunk length is :'||((i*v_chunk_length)+1));
    END LOOP;
    FND_FILE.put_line (fnd_file.log,'out of loop');
    FND_FILE.put_line (fnd_file.log,'length of new xml is '||v_clob_len);
    Please, let me know if you need Further clarifications on the same.

  • AUR3 [aur-pyjs] implementation in python (pyjs) + JSON-RPC

    Welcome to AUR3.
    available (pre-alpha)...
    http://aur.archlinux.org/packages.php?ID=38359
    QUICKSTART
    1) install
         # http://aur.archlinux.org/packages.php?ID=38359
    2) run
         # /usr/lib/aur-pyjs-git/aur serve -f
    3) view
         # http://127.0.0.1:8000/Aur.html
    INTRODUCTION
    This is a reimplementation of the AUR using a widget toolkit known as Pyjamas (http://pyjs.org).  Client-side code (to run in web browsers) is written and maintained in python; when deploying to production, the python sources are compiled/translated to 100% pure javascript.  The resulting javascript code can be ran on any major browser.  When deployed, this is a 100% pure javascript application... thus, javascript is required, else you will see only a blank page.
    WHY PYJS?
    1) anyone that knows python can write clean, maintainable client-side code
    2) eliminates the need to know the umpteen inconsistencies amongst browsers
    3) via pyjamas-desktop, the app runs as 100% pure python, as a true desktop app, with no modifications
    4) back-ends are JSON-RPC; allows back-ends to be written in any language, and enforces a clean separation
    PROJECT STATUS
    1) FRAMEWORK
         [complete] basic URL dispatcher
         [complete] load new content pages with cache support
         [new] create generic URL-to-module dispatcher (like cherrypy/etc.)
    2) SHELL
         [complete] pixel perfect to other sections of the site
         [complete] links/titles/copyright in place
    3) BASIC SEARCH
         [complete] search front-end
         [incomplete] perform search front-end
         [incomplete] perform search back-end
    4) ADVANCED SEARCH
         [complete] define toggles
         [incomplete] define filters
         [incomplete] define sorts
         [incomplete] enable/enforce limits
         [complete] search front-end
         [incomplete] perform search front-end
         [incomplete] perform search back-end
    5) LANGUAGES
         [incomplete] Language.py module methods
         [incomplete] language JSON-RPC backend (preferred), or hardcode in Language.py
         [incomplete] replace hardcoded text with calls to Language module
    6) HOME
         [complete] create page
         [incomplete] introduction/disclaimer
         [incomplete] recent updates front-end
         [incomplete] recent updates back-end
         [incomplete] statistics front-end
         [incomplete] statistics back-end
    7) BROWSE/SEARCH/MY PACKAGES
         [complete] create page
         [incomplete] paginating results front-end
         [incomplete] paginating results back-end
    8) VIEW PACKAGE
         [incomplete] create page
         [incomplete] package details front-end (name/link/desc/deps/files/etc.)
         [incomplete] package details back-end
         [incomplete] list comments front-end
         [incomplete] list comments back-end
         [incomplete] add comment front-end
         [incomplete] add comment back-end
    9) ACCOUNTS
         [incomplete] create page
         [incomplete] create/edit account front-end
         [incomplete] create/edit account back-end
    10) SUBMIT
         [incomplete] create page
         [incomplete] submit package front-end
         [incomplete] submit package back-end
    PYJAMAS-DESKTOP ONLY (as python)
    1) INSTALL
         [incomplete] add 'install' links (view/browse/search pages)
         [incomplete] install status/details front-end (GUI)
         [incomplete] python module "back-end" to download packages + dependencies and install
    GET INVOLVED
    1) set up a development environment + pyjs sandbox at ~/aur-pyjs...
         # /usr/lib/aur-pyjs-git/aur sync ~/aur-pyjs
         # cd ~/aur-pyjs
    2) update pyjamas anytime by running...
         # ./aur sync
    3) generate the AUR...
         # ./aur trans
    4) view the AUR...
         # ./aur serve -f
         # http://127.0.0.1:8000/Aur.html
    5) create a package based on remote git master...
         # ./aur pkg
    6) create a package based on your local git master...
         # ./aur pkg -l
    7) create a package based on your local git master AND install it...
         # ./aur pkg -li
    All of the commands support a 'help' and 'usage' parameter:
    # ./aur help
    Usage: aur-pyjs COMMAND [help|OPTION]...
    Develop, translate, package, and serve AUR3
    COMMANDs:
    pkg build package from local/remote master; opt. install; opt. upload
    sync bootstrap/update local/target devel environment
    trans translate python sources to javascript for deployment
    serve lastest local build at http://localhost:8000
    # ./aur pkg help
    Usage: aur-pyjs pkg [-l] [-i] [-u]
    Package local/remote build and optionally install and/or upload to AUR legacy
    Options:
    -l favor local source over remote
    -i install package locally
    -u upload to AUR legacy after building
    LAST WORDS
    yes.  I hope this to become the official AUR, and/or some other directions [1]
    yes.  running as a python desktop app, you will be able to install packages directly
    yes.  project is active; tentative completion date, ~October 2010
    possibly.  I'd like to make it capable of running independently, managing the local system
    no.  project is not a revived incarnation of other attempts
    ) advanced search will be restricted
    ) SOMEONE CAN START BUILDING JSON-RPC BACKENDS NOW
    ) PHP and MySQL s_ck.   If I do it, the back-ends will be python ( + git/sqlite/couchdb)
    ) feedback appreciated
    ) to contribute, fork on github and send me a request.
    C Anthony
    [1] http://bbs.archlinux.org/viewtopic.php?id=90970
    Last edited by extofme (2010-09-12 23:37:47)

    Xyne wrote:Sorry for being too lazy right now to check myself, but would this require that Javascript be enabled to use the AUR or does Pyjamas gracefully fall back to plain HTML?
    heh, yeah i purposefully wasn't mentioning that at this point .
    no, it is not able to fall back to plain old HTML.  there was/is a project, pyjamas-server or something, where the backend/server would run the app as python (i think, might have been spidermonkey), compute the DOM, then spit the result to the client/browser as an HTML document.  every time you did an "action" (clicked something/whatever), you would make a new request to the server, it would do the action for you, then spit back the result.  i'm not sure completely how it worked, but the biggest problem was that in order to maintain a "state" from the clients perspective (simply retaining variables/etc.), a permanent/daemon process was required on the server.  this daemon would essentially be doing the same thing a client browser would have done, had javascript been enabled, but the daemon is doing it for _every_ client that doesn't support JS.  the other option was to serialize/deserialize the entire state after each request, but that's slow
    i have some hope for this in the future, but ATM it's not here.  although, it may be easy to "snapshot" points in a running pyjamas app, and save the DOM.  this could then be served up, and could reuse the same CSS as the JS version; i believe this is sort of how the new test suite in pyjs works, but i'm not sure.
    the other option would be to just create a super simple HTML only version, maybe try to reuse the CSS, i dunno.  i've done manual web development for so long, that frankly i stopped caring about supporting 15 browsers and degrading gracefully to 10 different levels of functionality, it's just too much, and drives you mad wasting time.  this is why i love pyjamas; it takes care of the top 5 browsers or so, and others usually work fine.  so, i make a full functioning version, and a super crappy basic HTML version that does the bare minimum; if you don't like it, enable JS.  with the advent of HTML5 and the JS API's, JS will start to become a hard requirement anyways i think.
    that was my long winded way of saying "no".
    Xyne wrote:Regardless, it seems that you have a good vision for this project and I hope that your enthusiasm for it continues. I know that it can be somewhat discouraging when initially met with nay-saying and/or a seeming lack of interest.
    thanks, and yeah it can be.  haha i thought people would be all over the idea of a new AUR, esp. one capable of running as a desktop app/installing with one click.  thats why i made it so easy to bootstrap a dev environment.  but meh, i code because i enjoy it, so i keep doing it cuz it feels gooooood.
    C Anthony

  • Downloaded files do not open

    I can't install software after downloads because a icon with the form of a white sheet of paper with the corner folded appears.
    Here are examples of downloaded files that do not open:
    Flip4Mac WMV.mpkg
    DivX for Mac Installer.pkg
    MacOSUpdCombo10.4.5PPC.pkg
    Help!
    iMac Duo Core   Mac OS X (10.4.10)  

    The installer app opens mpkg files. Right-click on one of the files and choose get info from the menu. Under the "open with:" section, be sure that installer is the application listed as the default application to open these files. I hope this helps!

  • Location of the outpout file following an extract

    Hi,
    In order to make some tests on the iSetup module, could you indicate us what is the location (path) on the server of the generated file following an extract. is it in the  "AZ" folder ?
    Thanks by advance

    New code:
    URL hsURL = HelpSet.findHelpSet(null,"file:///f:/AppData/Progress/java/projects/LDConsole/pkg/help/consolehelp.hs");
    Still gives a zero pointer
    the jh.jar file is located in f:/AppData/Progress/java/projects/LDConsole/pkg
    The path contains this directory
    Luc

  • Photoshop Extended 3D OBJ file

    I created a model in a 3D package and imported the .obj file into Photoshop Extended (CS4).  I painted on the model in Photoshop and I was hoping that I would be able to reimport that painted model into the 3D package.  The export options for Export 3D Layer in Photoshop allowed for exporting the texture (a dialog came up) and I chose TIFF.  But when I looked in the textures in the 3D package I just saw a simple texture without any of my "painting" on it, in other words there were no links to Texture Placement icons or anything of that sort.  I just got a basic gray texture which was incidentally the same thing I imported into Photoshop, just a different name.
    How can I export the painted portion of the texture into the 3D package?  Am I supposed to save the file as a PSD file and then import the PSD into the 3D packages texture attributes section?  Any help is greatly appreciated.

    Thanks Mylenium.  I looked into the 3D pkg help files and it had a literal blip on MTL files which said that they only work in certain instances.  Turns out that the MTL doesn't work at all (at least not with the method that I tried--but there's no explicit help on how to use it either).  However if I save the texture material as a TIF and import the TIF onto the surface then it works perfectly.  I probably could use other popular image formats as well that Photoshop offers when exporting the OBJ layer.  But you definitely pointed me in the right direction by having me look for an MTL file.  Great!!

  • Need Urgent help in downloading the pkg from Sunfreeware

    Hi all,
    I am trying to down load few pkgs from Sunfreeware.
    On the site I see 2 sets of pkgs for the same pkg.
    one which ends with local.gz & the other one with .gz ( which is a source code)
    Which one do I download & how do I add it using the pkgadd command.
    I know the cmd but don't know which one to download & how to proceed.
    PLEASE HELP ME , I HAVE SPENT A LOT OF TIME ON THIS BUT NO RESULTS.
    Thanks in advance

    Also, I'd recommend you try compiling some of these packages yourself (especially if you haven't done any earlier) --- it really goes a long way to help build some tools/software that aren't in the System V pkg format. : )

  • Quartz Composer not installing from .pkg on OSX 10.4 - help?

    i don't know what's going on, but for some reason, the Quartz Composer app is not installing when i run the DeveloperTools.pkg
    can anyone offer any advice/assistance or similar experience?
    thanks

    Welcome to Apple Discussions, magneticpitch!
    I can't help you with your question, but I'd like to make a suggestion about using Discussions. In general, it is best to ask your question in only one forum at a time. That way all the answers are in one place, and it is easier for people trying to help to see what has already been suggested. If after a few days, you haven't gotten help in the one place you asked, it is appropriate to ask in another forum.
    Good luck.

  • Can't open .pkg files. Going mad, please help!

    I'm trying to open an edirol driver with a .pkg file type but the icon just expands and then nothing happens. Same thing happpens with other .pkg files. I've opened with Installer, tried creating a new admin user, copied to desktop but to no avail. Is there anything else I can try short of Archive & Install? Bit scared of trying that. Please help.
    Thanks.

    Prince of Wales:
    I just downloaded the file in Firefox. In the download window I clicked Open and the file was expanded on my desktop. I located the folder and double clicked. I then double-clicked on the .pkg and it opened the installer and was ready to run the script to see if the software could be installed on my computer.
    I suggest that you try downloading the file again and see if a new download makes a difference. Incidentally, not that it should make a difference, what browser are you using? Have you had difficulty expanding and installing any other downloads.
    Good luck.
    cornelius
    Message was edited by: cornelius

  • HELP: Visual C++ 6 devdbg.pkg on Windows 7 crashing

    I used to have a HP Core2Duo i2 desktop, with native Windows 7 SP1 and Visual C++ 6 running fine.
    Now I got a Dell XPS 8700 i7 desktop, SSD, with native Windows 7 SP1 and Visual C++ 6 keeps on crashing everytime I load up a workspace/project.
    devdbg.pkg exception, access violation
    My work colleagues tell me their Visual C++ 6 runs fine on their Windows 7.
    Does anyone have a clue why a Dell XPS 8700 i7 desktop (SSD) running native Win7SP1 would keep on crashing everytime I load up a workspace/project in Visual C++ 6 (latest service packs). But on my old PC (HP Core2Duo i2) Win7SP1, it runs fine?
    PS: No, I do not want to run VC6 in a VM. Am more curious why VC6 works fine in Win7 on one PC, but not on another Win7.

    Hi andwan0,
    Thanks for posting in MSDN forum.
    The Visual C++ 6 is really too old. So VC + + 6 has been out of Microsoft's product support lifecycle. Please check this, we can find the information about the product support lifecycle information on this page.
    https://support.microsoft.com/lifecycle/search?sort=PN&alpha=visual+c%2B%2B+6&Filter=FilterNO
    Now we can use visual studio 2013 community for free. You could download it from here.
    http://www.visualstudio.com/en-us/products/visual-studio-community-vs.aspx
    Best regards,
    Shu Hu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • [Solved] Help compiling the pkg - oggsvideotools

    I was looking for a command line slideshow creator.
    ffmpeg can be used, but  it has some limitations. Afterall its not for making slideshows
    So I found this tool: http://dev.streamnik.de/files.html
    Here's the source
    while compiling I get this error:
    /tmp/oggs/oggvideotools-0.8a/src/oggCat.cpp: In function ‘int oggCatCmd(int, char**)’:
    /tmp/oggs/oggvideotools-0.8a/src/oggCat.cpp:252:65: error: ‘getopt’ was not declared in this scope
    /tmp/oggs/oggvideotools-0.8a/src/oggCat.cpp:262:32: error: ‘optarg’ was not declared in this scope
    /tmp/oggs/oggvideotools-0.8a/src/oggCat.cpp:372:11: error: ‘optind’ was not declared in this scope
    make[2]: *** [src/CMakeFiles/oggCat.dir/oggCat.cpp.o] Error 1
    make[1]: *** [src/CMakeFiles/oggCat.dir/all] Error 2
    make: *** [all] Error 2
    There're some patch files on the web which are probably distribution specific. I could not use them.
    The AUR pkg is useless.
    Would be great if somebody can help me out.
    Last edited by debdj (2012-07-10 20:18:11)

    I got the AUR package to work with the following patch applied to the list of files below
    24a25,26
    > #else
    > #include <unistd.h>
    files:
    oggCat.cpp
    oggCut.cpp
    oggDump.cpp
    oggLength.cpp
    oggSilence.cpp
    oggSlideshow.cpp
    oggTranscode.cpp
    edit: here's a working PKGBUILD excerpt.  Modify the build function as follows adding the for loop:
    cmake . -DCMAKE_INSTALL_PREFIX=/usr
    for _f in Cat Cut Dump Length Silence Slideshow Transcode; do
    sed -i '24a #else' ./src/ogg${_f}.cpp
    sed -i '25a #include <unistd.h>' ./src/ogg${_f}.cpp
    done
    If this works for you, please inform the maintainer of the AUR package of the problem and direct them here for a proposed solution.
    note: there is  probably a much more elegant way to apply such a change, I don't use sed's 'a' command much and I don't know if there is a simpler way to give sed a list of files rather than looping.  This does, however, work perfectly well here.
    Last edited by Trilby (2012-07-10 18:11:08)

  • Pkg-config help

    I searched the forums but I'm still a little lost. Trying to build xarchiver.
    checking for egrep... grep -E
    checking for ANSI C header files... yes
    checking for pkg-config... no
    checking for PACKAGE... configure: error: The pkg-config script could not be found or is too old. Make sure it
    is in your PATH or set the PKG_CONFIG environment variable to the full
    path to pkg-config.
    Now, the search on the forums told me I need to make sure the .pc file is in my package config path. However, I don't know what .pc file I'm looking for. Thanks for the help.

    [root@workstation64 andyrtr]# pacman -Qo /usr/bin/pkg-config
    /usr/bin/pkg-config is owned by pkgconfig 0.19-1
    So "pacman -Sy pkgconfig" should solve it.

Maybe you are looking for

  • Spry drop down menu not showing in IE7

    I'm using Dreamweaver CS5, Windows 7 64bit OS, and tested in IE8 or newer and firefox all working perfectly.  (with the exception of IE7). the problem can be viewed at www.maxdailydeal.com the drop down sub-menu are not displaying on IE7, can anyone

  • How to use aggregate function with Toplink

    Hi My question is how can I get the following select when using Toplink-EJB.3: SELECT MAX(fieldname) FROM tablename; Thanasi

  • Help with my query

    Hello all, Total newbie to this pl/sql stuff. So, deseperately need help in my query. BOOKING_ID     BOOKING_STATUS     BOOKING_DATE     BOOKING_TIME     BOOKING_DATE_TIME 1234567     CANCELLED     20090301     37252     5/1/2010 10:20 1234567     CA

  • Date format in oracle system

    Hi expert, date format in our oracle is 'mm/dd/yy', here in a application table, we got following fields: ACCOUTING_FROM_DATE ACCOUTING_TO_DATE 1/28/13 1/01/00 could you please tell me what date is '1/01/00'? and how to change oracle data format with

  • EA3/EA2 - SQL History Timestamp column

    The formatting of the Timestamp column in the SQL History now uses the NLS Timestamp Format (yay!), but unfortunately does not cope with the seconds component of the format: NLS Timestamp Format is DD-Mon-YYYY HH24:MI:SSXFF Timestamp column in the SQ