Trying to obtain and use PeopleSoft Open Query ODBC driver

I've found architectural diagrams and descriptions of the PeopleSoft Open Query ODBC driver and am looking for where to download this driver from.
Anyone know or have any experience in using it?
Thanks,
Bob Sleik

Hello Bob,
The "PeopleSoft Open Query ODBC driver"
is delivered with PeopleTools.  Starting with PT8.50, this driver is installed by running PS_HOME\bin\client\winx86\psodbccrinst.exe, which spools a log to %TEMP%\psodbccrinst.log
The psodbccrinst.log shows the files and registry updates involved.
After installing, when you open the ODBC administrator, you'll see 'PeopleSoft PeopleTools' driver for your PeopleTools release.
Kind Regards,
-Kirsten Zurbrugg

Similar Messages

  • Just got iPhone 5, get home and find iCloud Outlook Add-in does not install under Windows XP.  I am loathe to upgrade to Windows Vista/7/8 just yet.  Can I obtain and use an earlier version of iCloud Outlook Add-in?  My iPad II synchronizes!

    Just got iPhone 5, get home and find iCloud Outlook Add-in does not install under Windows XP.  I am loathe to upgrade to Windows Vista/7/8 just yet.  Can I obtain and use an earlier version of iCloud Outlook Add-in?  My iPad II synchronizes!

    There is no 'earlier' version that supports XP. iCloud launched with Vista/7 support only.

  • Can I connect a 4 TB USB drive to the airport extreme and use it as a network drive for Time Machine

    Can I connect a 4 TB USB drive to the airport extreme and use it as a network drive for Time Machine

    Yes, if the drive is formatted in Mac OS Extended (Journaled).
    The USB port on the Time Capsule is under powered, so you may need use a powered USB hub with the 4 TB drive...even if it has its own power supply.

  • I have an iMac running Lion and W7 with boot camp . It has been operating flawlessly until I went to reboot into Mac tonight. Screen went black, and system is unresponsive. I've tried force quitting and turning power off. Hard drive starts but that's it..

    I have a 5 month old  iMac running Lion and W7 with the latest version of boot camp . It has been operating flawlessly until I went to reboot into Mac tonight. Screen went black, and system is unresponsive. I've tried force quitting and turning power off. Hard drive starts, there's a small amount of drive activity and that's it. 

    Hi Jane, your info may still be there, look in the Users folder at root of the drive, how many users are there there?
    It sounds like this may have happened...
    Return to default desktop, apparent "loss" of home directory, (it can happen spontaneously too)...
    http://docs.info.apple.com/article.html?artnum=107854

  • Can I park a 64GB SDEC in the Pro-Retina's slot and use it as a slow drive?

    Can I park a 64GB SDEC in the Pro-Retina's SDEC slot, such as a Lexar or Sandisk, and use it as a slow drive?  Will it show up like a thumb drive in a USB port?
    And:
    There are no Flash USB 3 thumbdrives on the Apple Store site that I can find.  Will over-the-counter USB 3 thumbs from stores work? Or do they have to say Mac compatible?
    Thanks!

    Whoops, SDXC, thanks. 
    So SDXC is probably not a good place to put extra videos particular to a business trip, as it may not have the speed to run them and would have to be copied over anyway?  So an answer would be an external portable HD that uses USB 3.0. that can be had in stores.
    What about videos on USB 3, can videos run from USB 3 thumb drives?
    Thanks, again.

  • I got an old Apple G5 shell from Goodwill. I'd like to salvage the Superdrive and use it as an external drive for my Apple laptop. Is this possible, and what cables would I need if so?

    I got an old Apple G5 shell from Goodwill. I'd like to salvage the Superdrive and use it as an external drive for my Apple laptop. Is this possible, and what cables would I need if so?
    Other info is available:
    Superdrive MFG date: Sept 2009
    Model: DVR-118LBK DVD-R/RW Writer Unit
    My Macbook is: Mid-2010, running Mavericks
    Thanks in advance, God bless!

    That's a nice Pioneer DVD±RW drive - and an upgraded replacement for the original optical drive that shipped with that G5.  For a finished look, you'd want to install it in an external enclosure for 5.25" IDE/ATAPI drives that converts it to USB connectivity.  Because SATA optical drives have replaced ATAPI drives in recent years, the selection is getting more limited for a new enclosure, although used ones can undoubtedly be found at ebay.  Here's an example of one, although it only features USB connectivity.  You can also find enclosures that have both FireWire and USB connectivity, which for Mac users is beneficial.  Booting the computer (if needed) by a FireWire-connected device is generally more reliable than USB booting.  If this isn't important to you, then a USB-only enclosure would be adequate.  The enclosure will have directions, but essentially all you need to do is plug in the power cable and data ribbon cable and then secure the drive to the bottom plate of the enclosure with the included machine screws.

  • Parse User Pasted Text and use in SQL query

    I am trying to take some user pasted text (typically would come from Excel) and parse those values and put into a query.
    text area:
    ":P11_text"
    query:
    "select *
    from table
    where column in :P11_text;"
    I have tried some variations of replace and translate in order to parse that list of values...something like: translate(:P11_text, chr(10)||chr(13), ',' ).....and many variations of this.
    I have been able to replace the end of lines with the commas, but it appears that I am not getting my single quotes captured, even when trying to force them in. The best attempt returned single quotes and commas in between values but not at the beginning and end of the list of values.
    I would bet that there is an easy way to accomplish this or an easy way to accomplish the requirement in a different way altogether.
    Please point me in the right direction.

    I finally got this one figured out!
    create or replace type myTableType as table
    of varchar2(4000)
    create or replace
    function in_list( p_string in varchar2 ) return myTableType
    as
    l_string long default p_string || ',';
    l_data myTableType := myTableType();
    n number;
    begin
    loop
    exit when l_string is null;
    n := instr( l_string, ',' );
    l_data.extend;
    l_data(l_data.count) :=
    ltrim( rtrim( substr( l_string, 1, n-1 ) ) );
    l_string := substr( l_string, n+1 );
    end loop;
    return l_data;
    end;
    --The SQL Query is:
    select *
    from t wher c in (select *
    from THE
    ( select cast( in_list(translate(:p10_prolist,chr(10)||chr(13),',')) as
    mytableType ) from dual ) a);
    --Working like a champion!!!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • I want to delete my Nano, and use it only as external drive

    Is it possible to delete my Nano, retain my iPod Video, and still use the Nano as an external hard drive? If so, will I then be able to manage my iPod video without doing it manually, i.e., by letting iTunes do it's automatic thing?

    Restore your Nano. Restoring will erase the iPod's hard drive, reload the software and put it back to default settings. Once the restore is complete follow the on screen instructions and it should connect to iTunes and give you a prompt to automatically update your library onto the fresh installation. Choose no and it will default to manual mode which automatically enables it for disk use. You can also uncheck the box "Open iTunes when this iPod is connected" in the Summary tab and just use it as a storage drive: Restoring iPod to factory settings with iTunes 7
    As for your new iPod, just connect it to your computer and follow the on screen instructions. It will update from your existing library and you can manage it however you choose.

  • Connecting Oracle to MS SqlServer using Microsoft SQL Server ODBC Driver

    Hello,
    I have just downloaded the newly released Microsoft® SQL Server® ODBC Driver for Linux and trying to configure it to connect to SqlServer Database from Oracle using DG4ODBC
    Below are my config files:
    # odbcinst -j
    unixODBC 2.3.1
    DRIVERS............: /etc/odbcinst.ini
    SYSTEM DATA SOURCES: /etc/odbc.ini
    FILE DATA SOURCES..: /etc/ODBCDataSources
    USER DATA SOURCES..: /usr/oracle/.odbc.ini
    SQLULEN Size.......: 8
    SQLLEN Size........: 8
    SQLSETPOSIROW Size.: 8
    cat /etc/odbcinst.ini
    [SQL Server Native Client 11.0]
    Description = Microsoft SQL Server ODBC Driver V1.0 for Linux
    Driver = /opt/microsoft/sqlncli/lib64/libsqlncli-11.0.so.1720.0
    #UsageCount = 1
    Fileusage = 1
    Dontdlclose = 1
    [ODBC]
    Trace = ON
    Tracefile = /tmp/mstestodbc.log
    cat /usr/oracle/.odbc.ini
    [DEFAULT]
    Driver = SQL Server Native Client 11.0
    [MSTEST]
    Driver = SQL Server Native Client 11.0
    Description = Microsoft SQL Server ODBC Driver V1.0 for Linux
    Servername = ret2axxx
    Database = testdb
    Port = xxxx
    And when I am trying to do an ODBC test using isql I am getting the below error.
    # iusql -v MSTEST username password
    [unixODBC][Driver Manager]Driver's SQLAllocHandle on SQL_HANDLE_DBC failed
    [ISQL]ERROR: Could not SQLDriverConnect
    Any help is much appreciated!!
    Thanks,
    Steve.

    Thanks Kgronau for your response.
    I have made changes to the ODBC.ini file still getting the same error
    [MSTEST]
    Driver = /opt/microsoft/sqlncli/lib64/libsqlncli-11.0.so.1720.0
    #Driver = SQL Server Native Client 11.0
    Description = Microsoft SQL Server ODBC Driver V1.0 for Linux
    #Address = ret2axxx
    Server = ret2axxx, <port>
    Database = testdb
    and when I am trying to export odbcinst.ini export ODBCINSTINI=/etc/odbcinst.ini
    in odbcinst -j output it shows the wrong information.
    :~ $ odbcinst -j
    unixODBC 2.3.1
    DRIVERS............: /etc//etc/odbcinst.ini
    SYSTEM DATA SOURCES: /etc/odbc.ini
    FILE DATA SOURCES..: /etc/ODBCDataSources
    USER DATA SOURCES..: /usr/oracle/.odbc.ini
    SQLULEN Size.......: 8
    SQLLEN Size........: 8
    SQLSETPOSIROW Size.: 8
    And when export odbcinst.ini as export ODBCINSTINI=odbcinst.ini it shows the correct path.
    :~ $ odbcinst -j
    unixODBC 2.3.1
    DRIVERS............: /etc/odbcinst.ini
    isql -v mstest username password
    [IM005][unixODBC][Driver Manager]Driver's SQLAllocHandle on SQL_HANDLE_DBC failed
    [ISQL]ERROR: Could not SQLConnect
    Thanks,
    Steve.

  • HT3131 MY macbook pro will only connect to my TV when the lid is open. When I close it to enter clamshell mode my TV gives me a error message saying "resolution mismatch." i have tried switching cables and using different TV's. it works on all my other TV

    It works all my other TV's except my Magnavox 39 inch. i have made sure that the resolutions are compatible.

    Yay! Solved my own question; just did a hard shutdown, worked like a charm! Funny, didn't before. But who am I to question salvation?

  • Trying to understand and use an Array

    I would like to have a game where the player has three tries before the game stops or moves on to another level.
    In this game an object jumps up with a mouseClick and if it doesn't hit it's target it falls where it crashes into a floor that uses hitTestObject.
    This leads to a  restartBtn. but I want that movieClip to remain on the stage, which has an animation that splatters. A new MovieClip is put on to the stage and the cycle starts over.
    Before this stage of the game s over I want the various movieClip splatters to be visible on the stage.
    I thought an Array would help me achieve this result but I'm not familiar with using them dynamically.
    I'm hoping someone can give me some tips as to what might work.
    I have temporarily separated this problem from the rest of the code as I'm hoping it will be clearer.
    This is where I left off and when I click the button it seems to eliminate the previous movieClip and introduce the next one.
    But it seems like I'm missing someting so I thought I would post it as it is probably a problem that comes up a lot in games. Thanks
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    var movieArray:Array = new Array();
    movieArray = ["Egg_A","Egg_B","Egg_C"];
    movieArray[0] = new Egg;
    movieArray[1] = new Egg_B;
    movieArray[2] = new Egg_C;
    var myMovieClip:MovieClip;
    init();
    function init()
              for (var i:int = 0; i < movieArray.length; i++)
                        emptyMC.addChild(movieArray[i]);
    mainBtn.addEventListener(MouseEvent.CLICK,changeEgg);
    function changeEgg(evt:MouseEvent):void
              for (var i:int = 0; i < movieArray.length; i++)
                        movieArray.splice(i,1);
              init();

    I don't see where an array is going to make anything remain.  Just having an instance created without removing it until you want it to go away is all you need.
    I don't see much reason with what you are doing with that array either.  First you assign a set of strings to it, then you replace those strings with instances of some Egg objects.  Then you add all the eggs to the display at once in your init() function (not one at a time), or you remove them all from the array with your change Egg function... calling the init() function after emptying the array isn't going to yield much since the init() function uses the array.

  • Cannot open pdf files downloaded using firefox. They open fine using safari, and used to open fine before my latest update of firefox.????

    I am running the latest version of snow leopard on my mac. Since the last update of Firefox, I have not been able to open any newly downloaded pdf's. I get a message that says "The file cannot be opened.
    it may be damaged or use a file format that preview doesn't recognize."
    When I download using Safari, everything works fine. I have been using Firefox for a long time and all of my bookmarks are in Firefox.

    I also disabled adobe npapi plug-in and now the pdf files open as usual.

  • Trying to create and use of a packaged class....

    Hi ,
    I have created a directory and put there the generated class....
    The dir structure is as:
    C:\oracle_files\Java\Examples\
                                  class_variables
                                  common_classes
    I have set the classpath to both the two above directories....
    The ThreeBedroomHouse class which has been compiled and put into the \common_classes is as follows...:
    package common_classes;
    public class ThreeBedroomHouse
          /*private class variable*/
    The compilation(successful) was done as :
    C:\oracle_files\Java\Examples\class_variables>
    C:\oracle\product\10.2.0\database10g\jdk\bin\javac -d C:\oracle_files\Java\Examples\common_classes\ ThreeBedroomHouse.java
    and the ThreeBedroomHouse.class file was generated in the "C:\oracle_files\Java\Examples\common_classes" directory....
    I tried to compile the second .java file , called HomeBuilder -including a main()- with code such as:
    import common_classes.*;
    public class HomeBuilder
    {When i try to compile it....
    C:\oracle_files\Java\Examples\class_variables>C:\oracle\product\10.2.0\database10g\jdk\bin\javac HomeBuilder.java
    I get the errors....
    package common_classes does not exist....
    Can you please pinpoint the error....?????
    Many thanks ... for your help and info....
    Sim

    I have succedded in running it.....at last!!!! However , in a manner which is not understandable to me.....
    That are the steps i 've taken.....
    [pre]C:\oracle_files\Java\Examples\class_variables>set classpath
    CLASSPATH=.;C:\oracle_files\Java\Examples
    C:\oracle_files\Java\Examples\class_variables>C:\oracle\product\10.2.0\database10g\jdk\bin\javac -d C:\oracle_files\Java\Examples ThreeBedroomHouse.java
    C:\oracle_files\Java\Examples\class_variables>C:\oracle\product\10.2.0\database10g\jdk\bin\javac HomeBuilder.java
    HomeBuilder.java:28: cannot access ThreeBedroomHouse
    bad class file: .\ThreeBedroomHouse.java
    file does not contain class ThreeBedroomHouse
    Please remove or make sure it appears in the correct subdirectory of the classpath.
    ThreeBedroomHouse myHouse=new ThreeBedroomHouse();
    *^
    1 error
    C:\oracle_files\Java\Examples\class_variables>set classpath=C:\oracle_files\Java\Examples
    C:\oracle_files\Java\Examples\class_variables>C:\oracle\product\10.2.0\database10g\jdk\bin\javac HomeBuilder.java
    C:\oracle_files\Java\Examples\class_variables>java HomeBuilder
    Exception in thread "main" java.lang.NoClassDefFoundError: HomeBuilder
    C:\oracle_files\Java\Examples\class_variables>set classpath=.,C:\oracle_files\Java\Examples
    C:\oracle_files\Java\Examples\class_variables>java HomeBuilder
    Exception in thread "main" java.lang.NoClassDefFoundError: HomeBuilder
    C:\oracle_files\Java\Examples\class_variables>set classpath=.;C:\oracle_files\Java\Examples
    C:\oracle_files\Java\Examples\class_variables>java HomeBuilder
    3
    3
    4
    4
    C:\oracle_files\Java\Examples\class_variables>The above in bold are the 'critical' points in the whole procedure.....
    First of all , i have deleted the ThreeBedroom.class file generated and i have compiled as such
    C:\oracle_files\Java\Examples\class_variables>C:\oracle\product\10.2.0\database10g\jdk\bin\javac -d C:\oracle_files\Java\Examples ThreeBedroomHouse.java
    Then , i have realized that i have made a mistake at setting the classpath ..... I have seperated the two entries ('.' and <directory path>) with a comma instead of a semicolon ';'.....
    But something i cannot understand is......
    when i have set the classpath as : CLASSPATH=.;C:\oracle_files\Java\Examples the compilation of the HomeBuilder.java is unsuccessful ....
    I have to set the CLASSPATH as CLASSPATH=C:\oracle_files\Java\Examples
    without the 'characters' *.;* to have it compiled successfully......
    Afterwards... if i try to execute the compiled .class file with the current classpath ... the java exe file produces error again.....
    I have to set it at its previous setting in order to run it successfully.....
    All this description is shown above......
    Can you please explain this 'strange(????) behavior'....?????
    Many thanks...
    Sim

  • I can import my first clip to the video library, but not the second clip. I tried dragging-dropping and using the "E" key, but only the first clip will show up in the library. I use IMovie 9.0.9 and OSX 10.8.5. with no problems until yesterday.

    I can drag my first clip from the New Event window into the Project Library, but not the second. I can highlight the second clip in the New Event window, but it won't "drag". The "E" key works for the first clip, but not the second.I've been using IMovie daily and the problem just appeared. No upgrades to the computer and no new software installed.  IMovie 9.0.9 and OSX 10.8.5

    Thanks victoryhat.  I learned some new things from this very clear tutorial.  But it didn't answer my question about why the titles don't stay with the video when I export it.
    He did mention something that might be a clue however.  When he talked about importing a title he created as an image, he noted that he was careful to make the image the same size as the video he was adding it to: 1280 x 720.  Since I took the video with an iPhone in the vertical position, my video image isn't the same size and orientation as the titles.
    Maybe there is a way I should be setting the screen for this size???  I'll go back and play around.  Meanwhile thanks for alerting me to Gary Rosenzweig's MacMost tutorials.  Very clear.  I'll look for more.

  • Trying to download and use Flashplayer

    Hi
    I've been trying to view virtual tours of houses through an estate agent's website which requires me to download Adobe Flashplayer. I go to the Adobe website, download and install Flashplayer okay but then it just doesn't seem to 'activate', so that when I go back into the website it's still saying I need to download Flashplayer (and I've now been round this loop about 5 times!).
    Being new to a Mac, is there something I'm supposed to do to make some downloaded software actually work?
    Many thanks!

    Flash player is usually installed as part of the OS installer. Go here on the Adobe web site:
    http://kb2.adobe.com/cps/141/tn_14157.html
    and download and run the uninstaller first. You have to quit all browsers when you uninstall and install. Then the Flash player is here:
    http://get.adobe.com/flashplayer/
    Then run Disk Utility and Repair Permissions.

Maybe you are looking for

  • Windows 7 home premium 64 bit , no brightness control.

    My OS is Windows 7 home premium 64 bit. I have a brand new Lenovo "desktop" pc with AMD quad core processor with integrated ATI graphics, 6 gig of memory . I cannot find anyway to adjust the brightness via Windows . The monitor itself is all the way

  • Custom Persona does not display after updating Firefox!

    == Issue == I have another kind of problem with Firefox == Description == I just updated Firefox, and my custom persona is no longer displaying properly. If I change to another persona from Mozilla it will display it just fine, and I can even see my

  • Solution Manager SMSY

    Hi This is a question on setting up BI systems in Solution manager transaction SMSY. We have a BI landscape running on Netweaver 7.0 (ABAP+JAVA). Under SMSY->SYstems, I have setup the systems under 'Product' SAP Netweaver and 'Product version' SAPNet

  • G3 B&W - No startup chime

    This is strange.... When I first started working on this G3, there was no startup chime. I plugged in a auxillary speaker system into the headphone port on the back, and was able to get it for a few times until it stopped through there.... I had prob

  • CheckDB failed in CRM 4.0 and SQL2005 SP1

    Hello all, I have a CRM 4.0 an SQL2005 SP1 - The kernel patch 640 is 221 - BASIS and ABA level is 60 When I execute a CheckDB by DB13 transaction the next error appear: "Could not find stored procedure 'dbc.sap_new_dbcheck'. [SQLSTATE 42000] (Error 2