Printing tools on Aix server with Forte/Oracle

I asked for it some weeks ago, but i had not enough answers... may be
you were on vacations !!!
I'm looking for a good software for manage print jobs on Aix server with
Oracle rdbms.
Something we cant use to make reports, bills, etc.. and callable with ou
without Forte.
If possible, reports template could be made on NT client (graphical
tools) but the jobs will run on the Aix (to avoid running on a NT client
and take all the network resources...).
What do you use on your site ?
Thanks.
Cordialement.
Patrice Bourdon
Alliance Sante France
Tel : (33) 02.54.60.26.27
Fax : (33) 02.54.60.25.00
e-M@il : [email protected]
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

I asked for it some weeks ago, but i had not enough answers... may be
you were on vacations !!!
I'm looking for a good software for manage print jobs on Aix server with
Oracle rdbms.
Something we cant use to make reports, bills, etc.. and callable with ou
without Forte.
If possible, reports template could be made on NT client (graphical
tools) but the jobs will run on the Aix (to avoid running on a NT client
and take all the network resources...).
What do you use on your site ?
Thanks.
Cordialement.
Patrice Bourdon
Alliance Sante France
Tel : (33) 02.54.60.26.27
Fax : (33) 02.54.60.25.00
e-M@il : [email protected]
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

Similar Messages

  • How to migrate an existing Microsoft SSIS deployment if it is decided to replace SQL Server with an Oracle database?

    Hi Oracle Gurus!
    Currently, I am designing an ETL solution that transforms and loads a lot of data from flat files and sends it to an SQL Server 2008 R2 database for storage. However, at a future point of time, it may be decided to add or even replace SQL Server with an Oracle 11g database.
    Currently, I am writing script transforms in C# to dynamically generate SSIS packages to tansform and load the data into SQL Server. But considering that in future, an Oracle 11g or 12c database might be added to, or replace the SQL Server database, how do I make my script transforms (or whatever else I am developing currently for SQL Server) reusable to the extent possible?
    Or more precisely, what steps do I take, from an Oracle point of view, to ensure that any future migration of data to an Oracle database would be smooth to the extent possible?
    Looking up to my Oracle Gurus for enlightenment in this matter!
    Novice Kid

    When you're writing your on C# code to load data into the SQL Server you have to modify the routines so that they will work with Oracle.
    One approach is to use the extproc agent which would allow you to directly call external programs with all the logic in it to perform the load of your files and to put the data into the Oracle database. Another option would be to use utl_file package (or equivalents) which will allow you to open external files from your Oracle database and to directly read its content and then to pass it to the related tables.

  • How to identify the physical IP address of AIX server on RAC Oracle 10g

    Hi All,
    Could you please help someone to identify the physical IP address of IBM AIX on RAC db. I have access to the database and I don't know whether the hostname mentioned in the tnsnames.ora file is virtual or physical ip adress . Is there any command to identify the physical IP address of AIX server. My objective is to gain acccess to those servers. I am a bit confused by looking at the virtual IP, private IP and Public IP addresses in the documentation and I am relatively new to this area. Also note that I am a junior developer who is trying to learn some new stuff.
    Please throw some lights on this.

    I am assuming you have access to the servers indicated in the tnsnames.ora file. After logging into those servers, take a look at /etc/hosts files, which lists the IP addresses and its associated host names. See if that helps. Another option is if you don't have access to the servers, "nslookup <ip_address_from_tns.ora>" should list the server name associated with the given IP Address. If your SAs have followed the general naming conventions - you should see -vip at the end.
    HTH
    thanks
    Chandra

  • Howto install SAP NW Windows Server with Linux Oracle 11g?

    Hi !!!
    In this moment i want to install a SAP Netweaver PI, but the client already has a linux database server with oracle.
    I read the MasterGuide but i cannot find the section or similar situation.
    Scenario
    WK8-PI
    192.168.1.100
    Admin y passwd
    Linux-Oracle
    192.168.1.77
    port: 3355
    user y passwd
    how to install SAP NW?
    Levy

    Hi!!!
    i read the instruction with Distribution System, and continue the steps, but the time to choose SAP System Database i cannot write the linux server always show me the Windows Server, and i can write the unique field is the instance. After push the next button and send me error, not install oracle database.
    thanks
    Levy Gonzalez

  • Replace Quotes, Connection Pooling, and Sun Web Server with MySQL, Oracle

    This is code I use to insert data into my MySQL and Oracle databases.
    I takes care of quotes and shows use of context, i.e. when you use Sun Web Server's
    ConnectionPooling. This code works. Feel free to reply if you have questions on how to set up connection pooling using Sun Web Server 6.1SP - it took quite a long time to learn and I couldn't find much information throughout the web, so I hope this helps...
    This is not a question and I am not looking for an answer, but please post comments or suggestions.
    dailysun
    This is in one class where I have a hashtable containing the
    column name / value pairs that I want to enter into my table.
    This class simply creates the SQL string from the values in the
    hashtable. It then passes that hashtable including the database
    name to a class which executes that sql statement (second code
    portion).
    /* Insert data into sf_parts. Create the column strings from
             * the provided hash table. Be sure to parse out hash elements which
             * are used for the createTemplate process
            StringBuffer values = new StringBuffer();
            StringBuffer fields = new StringBuffer();
            Enumeration keys = fieldHash.keys();
            while(keys.hasMoreElements()){
                Object currentKey = keys.nextElement();
                    String fieldValue = (String) fieldHash.get(currentKey);
                    if(values.length() >0){
                        values.append(",");
                    values.append("'"+fieldValue.replaceAll("'","''")+"'"); // Takes care of quotes and various other special characters!
                    if(fields.length() >0){
                        fields.append(",");
                    fields.append(currentKey);
            sql = "INSERT INTO myTable (" + fields.toString() + ") VALUES (" + values.toString() + ");";
            String insertResult = caq.getInsertDelete(sql,"myDatabaseName"); // your database name is defined in web.xml and sun-web.xml when you use Sun Web Server's Connection Pooling.
            returnValue += "<br><br><b>Rows inserted into table(myTable): </b>" + insertResult + "<br>\n";
            And, like I describe above, this method executes the sql statement.
         * Takes care of insert, update and delete requests.
         * Must have set both dbName as well as the sql String.
         * Will return number of rows affected as String.
         * @return String Number of rows affected
         * @exception SQLException
         * @exception Exception
        public String getInsertDelete() {
            checkData(); // this simply checks if the variables dbName and sql are not empty ;-)
            InitialContext initContext = null;
            int rv = 0;
            try{
                // Get connection from configured pool
                initContext = new InitialContext();
                source = (DataSource) initContext.lookup("java:comp/env/jdbc/" + dbName); // I have this set up in web.xml and sun-web.xml (I use Sun Web Server 6.1SP which does connection pooling for me)
                conn = source.getConnection();
                if(conn != null){
                    stmt = conn.createStatement();
                    rv = stmt.executeUpdate(sql);
            }catch (SQLException e){
                // do something
            }catch (Exception e){
                // do something
            }finally{
                try{
                    stmt.close();
                }catch(Exception e){
                    // do something
                try{
                    conn.close();
                }catch(Exception e){
                    // do something
                try{
                    initContext.close();
                }catch(Exception e){
                    // do something
            return rv+"";
        }  

    This is code I use to insert data into my MySQL and
    Oracle databases.
    I takes care of quotes and shows use of context, i.e.
    when you use Sun Web Server's
    ConnectionPooling. This code works. Feel free to
    reply if you have questions on how to set up
    connection pooling using Sun Web Server 6.1SP - it
    took quite a long time to learn and I couldn't find
    much information throughout the web, so I hope this
    helps...
    This is not a question and I am not looking for an
    answer, but please post comments or suggestions.Using prepared statements would mean that you wouldn't have to worry about quotes.
    You should be closing the result set.
    You are handling all fields as strings. That won't work with time fields and might not work for numeric fields.
    Presumably most of your variables are member variables. They should be local variables because that is the scope of the usage.
    You must do something with the exceptions.
    Hashtables although convienent mean that problems with usage can only be resolved at run time rather than compile time.

  • Ms sql server linked server with OraOLEDB.Oracle provider session handling

    Hi everyone!!
    Here's my situation:
    I have a MS SQL Server 2008 R2 with a linked server to Oracle via OraOLEDB.Oracle provider.
    I use a .net application to open a connection to my sql-server, execute a select that collects data through the linked-server-connection from the oracle database and after that I close to connection to the sql.
    It does work so far,
    but when I start my application, exit it proberly and start it again it seems that i get the same session as before (which is for some reasons very bad).
    Is that the right/normal behavior?
    Is there any way to avoid that?!
    How does the OraOLEDB.Oracle provider handle the sessions if used in/as a linked server?
    thanks and greetings,
    exoc
    Edited by: 944414 on Jul 4, 2012 5:43 AM

    Hii Rouann,
    Does the error occur when you call the stored procedure from SSIS package and map SSIS variables to the parameters in the stored procedure? Can you run the store procedure from SSMS properly? If you can run the stored procedure from SSMS, the issue seems
    to occur due to the date format mismatch between the SSIS variables and the parameters in the stored procedure.
    If you cannot run the stored procedure from SSMS as well, the issue should occur due to the incorrect data conversion within the store procedure itself as Tom mentioned.
    Regards,
    Mike Yin
    TechNet Community Support

  • Running a Batch File on another Server with an Oracle Job

    hi, i have the following code
    BEGIN
    DBMS_SCHEDULER.CREATE_JOB (
    job_name => 'test_job_bat',
    job_type => 'EXECUTABLE',
    job_action => '\\10.1.1.63\test\test.bat',
    enabled => true,
    comments => 'test bat'
    END;
    So i want to run a batch file, which lies on another pc in the network
    The code runs, without a failure.
    The bat file just contains "MD D:\bla" .
    When i run the code, no bla directory is created, so it seems that the batch file never ran.
    i approved read/write on the test folder. (Windows 7 machine)
    any ideas?
    Edited by: user1067632 on 31.05.2010 05:03
    in dba_scheduler_job_run_details the job is listed as FAILED:
    ORA-27370: Job-Unterprozess konnte einen Job vom Typ EXECUTABLE nicht starten
    ORA-27300: BS-abhängiger Vorgang accessing execution agent mit Status: 2 nicht erfolgreich
    ORA-27301: BS-Fehlermeldung: Das System kann die angegebene Datei nicht finden.
    ORA-27302: Fehler aufgetreten bei: sjsec 6a
    ORA-27303: Zusätzliche Informationen: Das System kann die angegebene Datei nicht finden.
    Edited by: user1067632 on 31.05.2010 05:16

    ok sorry, i made my testjob run, the OracleJobScheduler was not started.
    But now i ran into an another Problem.
    Now i want to java bla.jar in my batch, and got that new error
    ORA-27369: Job vom Typ EXECUTABLE nicht erfolgreich mit Exit-Code: Unzulässige Funktion.
    STANDARD_ERROR="Unable to access jarfile start.jar"
    anything to consider when accessing .jar files in my batch?
    edit:
    there was a classpath problem.
    Edited by: ginkgo on 01.06.2010 04:29

  • Installing OMS 10.2.0.5 on server with Oracle 11.1.0.7

    IBM w/AIX 6.1
    I am wondering if there would be any expected issues to download and install the latest version of OMS (Oracle Management Server for Grid Control), 10.2.0.5 onto a server that already has Oracle 11.1.0.7 running on it.
    I intend to use the 11.1.0.7 for the actual OMS repository database, (as well as my RMAN catalog database).
    While I am fairly certain that there are no compatibility issues with running the 11.1.0.7 for the OMS repository database (and RMAN catalog databases), but what I'm concerned with is the order of installing.
    As noted, I have already installed the 11.1.0.6 and upgraded to 11.1.0.7.
    Can I simply download and install the OMS 10.2.0.5? I'm assuming it would just put everything into a separate Oracle Home such as /oracle/product/oms (or something like that), while the 11.1.0.7 is located in /oracle/product/11.1.

    Yes, I know that, but my question still remains regarding the installation of OMS on the same server with existing Oracle software (especially of a higher version)?
    Does anyone have any experience with installing latest version of OEM (10.2.0.5) on a server already having a later version of Oracle RDBMS (11.1.0.x)?
    Thanks.

  • AIX 5.2 : how to pass password value while creating a user on AIX server

    Hi ,
    Test connection is successful with AIX server , I can successfully create a user on AIX server, with defualt password.
    I am not passing the any password value still some default value is being populated for the user...
    In AIX while creating the user , use get force to set the password...
    But while configuring the schema for AIX adapter ...if password attribute is given then it will give the error
    as invalid attribute...while creating a user if password value pass...
    how to set the password for the user..what attribute need to set for the password .
    thanks ..

    The default password might be the IdM account password of the user you are trying to provision. You don;t need to keep password in the resource schema. Just set password.password and password.confirmPassword and select AIX resource for password reset. Check the workflow-form-views document for more information on password view.

  • RAC installation with 12c database on IBM AIX server 7.1(64bit)

    Dear Team,
    We have to configure the RAC with oracle 12C database on IBM AIX server 7.1(64bit).
    We are new to the RAC setup with 12c installation. So kindly provide the metalink id for proceeding the above installations.
    Thanks
    Kumar

    Hi,
    Refer this document also,
    RAC and Oracle Clusterware Best Practices and Starter Kit (AIX) (Doc ID 811293.1)
    Regards,
    krish.

  • How to Communicate with Programs running on AIX server Using LabVIEW.

    We have an IBM AIX server on which some programs are running  which basically perform some scientific calculations. I am required to send the inputs to the calculation from a VI on windows system and get back the results  on the VI.  I do not have any idea on how to do this.
    But i heard that there is a tool ( not developed in LabVIEW) developed by my customer which can communicate with the AIX server thro Java Classes.
    So i tried exploring APPLETVIEW which supports java and LabVIEW but i am confused.
    Is there any way to achive this interfacing between AIX and LABVIEW?.
    Thanks  
    Vilas G

    Hi Vilas,
    How you may communicate with you AIX server may very greatly depending on what is running on your server.  Here is a link to another thread where Java calls and AppletView were discussed.  It contains a link to the company that makes AppletView, so it may have some good information for you. 
    Also, if your customer suggested you use AppletView and they developed it, they would probably be your best bet for explaining it to you.
    Hope this helps!
    Spex
    National Instruments
    To the pessimist, the glass is half empty; to the optimist, the glass is half full; to the engineer, the glass is twice as big as it needs to be...

  • Discoverer Plus associate with the Oracle Application Server Infrastructure

    Hi Everyone,
    I just install the Oracle BI (v 10.1.2.0.2) into my 2003 server so I could use the Discoverer Plus and Viewer. This is a stand alone BI installation (I guess, I have little knowledge about Discoverer plus or Oracle AS).
    My question is how could I connect the Discoverer plus to my ODS database, so I could create report or view report.
    and where to find the Oracle Application Server Infrastructure (or How do I know I have the Oracle Application Server Infrastructure?)
    I read the Oracle BI Discoverer Configuration Guide, and it tell me to associate the Oracle BI with the Oracle Application Server Infrastructure to deploy the Discoverer. so I went to the BI Application Server Control page, the Infrastructure section, the Identity Management to configure the Internet Directory, so I could I have the public connection, but it didn't work.
    Also do I real need the Oracle AS Infrastructure to make the Discoverer Plus work?
    Thanks in advance
    Kevin C
    Kevin
    Edited by: cmingl on Feb 11, 2010 1:30 PM

    Hi Kevin,
    Oracle AS Infrastructure is needed only if you are implementing SSO for Discoverer or using Public connection .
    Else only Oracle AS Middle tier is sufficient to work with Discoverer Plus .
    Regarding "how could I connect the Discoverer plus to my ODS database, so I could create report or view report"
    You need to create the End User Layer (EUL) and then grant privilege to the EUL to users who will be creating the report .
    Thanks,
    Sutirtha

  • Sharing Linksys Wireless Print Server with MAC and PC - How to do?

    I have lost the capability to share a printer on my network by using the Linksys Wireless Print Server-model number WPS54G -V2. Prior to having to return my previous Print Server on an RMA, I was able to use the MAC and PCs on my network. I have a PowerGook G4 with MacOS X 10.4.10. I also have a Airport Extreme Base Station V5.6. The printer on the network that is being shared is an Epson Stylus Photo 820. Recently, when trying to reconfigure the network, I updated the software on the Airport Extreme...so I think after that, I am no longer able to share this printer using current network configuration. As information, I will share how I got the network to share the printer BEFORE I had to replace the previous Print Server and BEFORE I updated the Airport Extreme. Please see this link:
    http://www.macosxhints.com/article.php?story=20050406151311940
    Even though this was for a different type of Print Server, this worked for me.
    When reconfiguring the new Print Server, I contacted Linksys...as had some difficulty until I found out how to assign a static IP to the new Print Server. When trying to talk to them about the Mac issue, and sharing the printer, they shared this link with me...which may be helpful to some, but I found that this does not work for me...
    http://www.macosxhints.com/article.php?story=20060404021600193
    I have been trying to work through the issue, but feel I may now have some compatibility issues between the Airport Extreme and the Epson printer.
    Further details are that I use 10.0.1.78 for the assigned IP address for the Print server. My router (which is the Airport address) is 10.0.1.1. I have tried IPP printing option, LPD printing option...and IPP printing at least returns a status on the Print Server as "printing" as opposed to "idle". I have checked the Print status on the Mac, and I have received two (2) different error messages as to why the print job failed. They are:
    "the process "picwpstops" stopped unexpectedly with status 1"
    and
    "the process "rastertoprinter" stopped unexpectedly with status 1"
    The latter happens when I follow the instructions on the second link I attached on this topic...with the only change being that I select IPP printing as opposed to LPD printing.
    Anyone that has any insight into HOW to configure the mysterious settings for Mac OS printing so that it can be compatible with a Wireless Print Server, please feel free to comment. In the meantime, I am thinking that the links above could help some people...just not me at this point given my current configuration and versions of software/firmware and perhaps the printer I am using.
    Greatly appreciate your consideration, and any suggestions to anyone that might understand what these error messages mean when checking the printer status after sending a file for printing.
    Thank you

    1. No, you don't have to make a bootable clone.
    2. If you use the drive for a bootable backup, then you cannot use the drive for other types of storage unless you partition the drive and make more than one volume.
    3. No, it will not try to boot the computer. You must designate the startup volume using Startup Disk preferences.
    If you wish to use the drive on both a Mac and a PC, then either you make two partitions - one for Mac and the other for the PC or you must format the entire drive using FAT32 so the drive can be used for read//write by both operating systems. If you do this then you cannot use the drive for a bootable backup nor can you use it with Time Machine.
    FAT32 is slower for read/write on the Mac than using Mac formatting.
    Optimally, I would suggest you partition the drive into two volumes. One volume formatted for the Mac and the other formatted FAT32.
    You can send files from a PC to a Mac and vice-versa using File Sharing. Select Mac Help from the Finder's Help menu and search for "file sharing" or "sharing" to find help articles. Also see,
    Mac OS X 10.5 Help- Setting up a Mac computer to share files with Windows users
    Mac OS X 10.5 Help- Setting up a Windows computer to share files with Mac users
    Mac OS X 10.5 Help- Sharing with Windows computers

  • Is it possible to connect Sqlfire server with oracle using DBSynchronizer using default license

    is it possible to connect Sqlfire server with oracle using DBSynchronizer using default license
    Sql fire is my machine
    Oracle is another machine
    When i connect sqlfire with oracle using DBsynchronizer It shows the error message as Wan is not supported for default license
    When i connect Sqlfie(my system) with oracle( another system) using JDBC Rowloader .nothing is happening after some time it shows the error like"time out for pool connection to archive database.When i increase the time out also nothing is happening.
    what is the reason for above two errors(I stated in the pragraph.)
    is it beacuse of wan netwrok not supported by default evaluation license?
    could you please explain?

    I don't think this has anything to do with a VMware product.

  • Moving Oracle 9i database from AIX server to Sun Solaris 9 server

    I want to move my oracle 9i database residing on AIX server to Sun Solaris 9 server.
    The database residing on AIX server has the following features :-
    1. It is a production database.
    2. Running in NOARCHIVE LOG Mode.
    3. It was Live for few weeks, hence transactions are stored on it.
    4. It has one schema,around 700 tables & 129 views.....etc
    5. Huge downtime is affordable.
    What is the safest way to do so ??
    Yachendra

    Hi Yachendra,
    1. It is a production database.
    2. Running in NOARCHIVE LOG Mode.By the way do you have any idea that PRODUCTION databases are always kept in ARCHIVE LOG Mode. It's is highly advice able.
    3. It was Live for few weeks, hence transactions are stored on it.If you are really serious about your data and don't want to lose anything and wants to perform CROSS PLATFORM you must make sure that you have all your achive logs.
    my oracle 9i database residing on AIX serverYou have already got the solution regarding that. Maran has told you for EXPORT/ IMPORT and Burleson has given you enough documents to consult.
    Thanks
    Shivank

Maybe you are looking for

  • With Upgraded 9.3 cannot find photo file

    Just upgraded to iPhoto 9.3 and had the photo file automatically upgraded.  I can open the app with the iPhoto icon.  But I cannot find the photo file.  And cannot do either from another computer on my network.  All that shows is the app icon.  Where

  • GarageBand Performance Issues

    Greetings: I've been using GarageBand 3.04 for a couple of years without any problems. However, these past couple of weeks my performance has been sluggish. I've received "Core Audio - Disk is too slow" notices and also notices that I'm playing too m

  • FI-AR-CR Customer Sales per Credit Control Area

    Hi, Do you know any table or funtion that may calculate the Customer Sales Volume per Credit Control Area? I need to calculate a customer specfic DSO (Day Sales Outstanding) figure. The standard AR Summary doesn't return such information. This nay be

  • Using Function Module in SAP Script

    Dear Friends, how can i use function modules in sap scripts?. i want to use call function SPELL_AMOUNT in sap script? in text element using perform statement hw can i use? Regarding i search related articles but, i am not getting any solution. Plz he

  • RSNAST00 doubt

    Hi, I have a print o/p invoice for one of my business cases. After succesful execution, the values get stored in NAST table but when I try to re run the print output by running the report RSNAST00 then I can't execute anything. What could be the poss