4.9 SP2 - Zfd3.2 SP3 client side files

Does anyone know if it's possible to build in the updated client-side
zfd3.2 sp3 files into this client (to save a reboot when the clients
detect newer server files?)
I've done this with older clients, not sure about this version.

Yes, should work the same way.
Client 4.91 will be the first that will completely leave out Zenworks
components.
Regards, Kai Reichert
Novell Support Forum Sysop
There is an old saying that if a million monkeys typed on a million
keyboards for a million years, eventually all the works of Shakespeare
would be produced. Now, thanks to the Internet, we know this is not
true.

Similar Messages

  • Manipulate client side files?

    Hi,
    I would like to manipulate client side files using APEX.
    Is there any functionality available for APEX similar to the functions provided in Oracle Forms 10g WebUtil?
    such as:
    CLIENT_HOST and CLIENT_TEXT_IO
    is there a way of using these functions in APEX?
    more specifically: I want to use CLIENT_TEXT_IO to create a batch file on the client, and CLIENT_HOST to execute the batch file in the cmd line on the client(windows)...
    could anyone suggest a way of doing this in APEX?
    thanks in advance
    Leon
    Message was edited by:
    user572239

    No, Forms over the web uses a Java applet in the browser, thus allowing them to manipulate client-side files. APEX does NOT use an applet (this is a good thing, btw) and thus has no native capability to manipulate client-side files. However, you could write your own Java Applet or ActiveX control (go with Java if you can, it works in all browsers) and embed this in an APEX page.
    Tyler

  • Client-side file I/O

    hi,
    we are trying to do client-side file I/O from PL/SQL. we have Oracle 8.1.7 here and looks like they have discontinued TEXT_IO after Ora-8. can someone give any ideas how we could write stuff in a file on the client-side in Oracle 8.1.7 ?
    alternatively, how can i increase the display of DBMS_OUTPUT so i can print out a VARCHAR2(4000) variable.
    thanks in advance,
    Briti

    TEXT_IO is a Forms built-in package, which is available to the client-side PL/SQL engine and accesses the client's filesystem.
    UTL_FILE is a database package that is usuable from server-side code only, and accesses the server's filesystem.
    I'm not quite sure what your problem is - could you elaborate?

  • UTL_FILE: Reading and Writing client-side Files

    Hi All,
    Please tell me how to read & write UTL_FILE at client-side
    Regards

    And you need this XML to be generated on and read from a client machine? You can't generate the file on the server, move it to the new server, and import it?
    If you need to generate files on the client machine, the client application would have to do the file I/O. Java has a number of libraries for generating XML and parsing XML that could be used, for example, but that implies that a Java application has been deployed to the client machine.
    Justin

  • From server-side application, launch client-side file?

    Are either of these possible?
    From a word document hosted by terminal server and accessed via SGD: user clicks on a hyperlink to C:\file.doc and it launches that file on the user's computer using that user's copy of MS word (rather than on the app server)?
    From a document management system hosted by terminal server and accessed via SGD: The system stores the file path of documents on the user's local area network. When the user wants to launch a file, he clicks on a button and that launches the file on his local area network using his local copy of MS word (just a thought: would involve passing the path from the app server to SGD server then to the local computer. Maybe via the tcc client?)
    Am thinking of several applications of this kind of thing, these are just 2 examples. Would really help us build server-side apps that run as if they are local (and would definitely up our license count of SGD). Thank you

    Are either of these possible?
    From a word document hosted by terminal server and
    accessed via SGD: user clicks on a hyperlink to
    C:\file.doc and it launches that file on the user's
    computer using that user's copy of MS word (rather
    than on the app server)?http://docs.sun.com/source/819-6255/attr_scottatrylocalwindowsapplication.html
    From a document management system hosted by terminal
    server and accessed via SGD: The system stores the
    file path of documents on the user's local area
    network. When the user wants to launch a file, he
    clicks on a button and that launches the file on his
    local area network using his local copy of MS word
    (just a thought: would involve passing the path from
    the app server to SGD server then to the local
    computer. Maybe via the tcc client?)
    Am thinking of several applications of this kind of
    thing, these are just 2 examples. Would really help
    us build server-side apps that run as if they are
    local (and would definitely up our license count of
    SGD). Thank you

  • Load data from File on Client side (via Sqlplus)

    Server OS: RedHat, Oracle 10g rel 2.
    I am trying to load data from OS .txt files to clob field.
    I am able to do this successfully using:
    Oracle DIRECTORY
    BFILE
    DBMS_LOB.loadclobfromfile packageIssue is: this only works if my files and DIR are on database server.
    Is it not possible "load clob from file" from client side, files being on client and exec command via SQLPlus. Is there any other option to load data from client side.
    Thanks for any help.

    Options:
    1) Search for OraDAV
    2) Learn about Application Express.

  • Zfd3.2 sp3 & client 4.83 sp1 on WinXP

    As per the subject of this post, will this combination work ok (assuming I
    update the client-side files)??

    What specific issues are you having?
    When you run "NAL.EXE" from public, it should update any required files on
    the workstation.
    [email protected] wrote:
    > Unfortunately, it doesn't work! Is there a way to update the client-side
    > files for this update?
    Craig Wilson
    CNE3, 4, 5 - MCSE - CCNA
    NSC Sysop (http://support.novell.com/forums/)
    Tech Writer - http://www.ithowto.com
    (I Peter 4:10)

  • How can i load file into database from client-side to server-side

    i want to upload file from client-side to server-side, i use the following code to load blob into database.
    if the file is in the server-side, it can work, but if it in the client-side, it said that the system cannot find the file. i think it only will search the file is in the server-side or not, it will not search the client-side.
    how can i solve it without upload the file to the server first, then load it into database??
    try
    ResultSet rset = null;
    PreparedStatement pstmt =
    conn.prepareStatement ("insert into docs values (? , EMPTY_BLOB())");
    pstmt.setInt (1, docId);
    pstmt.execute ();
    // Open the destination blob:
    pstmt.setInt (1, docId);
    rset = pstmt.executeQuery (
    "SELECT content FROM docs WHERE id = ? FOR UPDATE");
    BLOB dest_lob = null;
    if (rset.next()) {
    dest_lob = ((OracleResultSet)rset).getBLOB (1);
    // Declare a file handler for the input file
    File binaryFile = new File (fileName);
    FileInputStream istream = new FileInputStream (binaryFile);
    // Create an OutputStram object to write the BLOB as a stream
    OutputStream ostream = dest_lob.getBinaryOutputStream();
    // Create a tempory buffer
    byte[] buffer = new byte[1024];
    int length = 0;
    // Use the read() method to read the file to the byte
    // array buffer, then use the write() method to write it to
    // the BLOB.
    while ((length = istream.read(buffer)) != -1)
    ostream.write(buffer, 0, length);
    pstmt.close();
    // Close all streams and file handles:
    istream.close();
    ostream.flush();
    ostream.close();
    //dest_lob.close();
    // Commit the transaction:
    conn.commit();
    conn.close();
    } catch (SQLException e) {

    Hi,
    Without some more details of the configuration, its difficult to know
    what's happening here. For example, what do you mean by client side
    and server side, and where are you running the upload Java application?
    If you always run the application on the database server system, but can't
    open the file on a different machine, then it sounds like a file protection
    problem that isn't really connected with the database at all. That is to
    say, if the new FileInputStream (binaryFile) statement fails, then its not
    really a database problem, but a file protection issue. On the other hand,
    I can't explain what's happening if you run the program on the same machine
    as the document file (client machine), but you can't write the data to the
    server, assuming the JDBC connection string is set correctly to connect to
    the appropriate database server.
    If you can provide some more information, we'll try to help.
    Simon
    null

  • Print text file to  client side printer

    Hi all,
    I have a character mode report which will print to a client side dot matrix printer in 6i. After converted to 10g, we cannot print to the client side printer (because we don't want to map so many print queue from the AS).
    So, I try to generate the report to a text file, then use webutil to transfer the txt file to the client PC, and then use Client_HOST to call the window PRINT command to print the text file to the client side printer.
    I have test this is successful, however, when I try to do the same thing to a report with Vietnam character, then it is not.
    The print request is sent to the printer, but the printer have no response.
    But that file can be print successfully if I open in Notepad and then print manually.
    I try to use window TYPE command and COPY command, but still have no luck.
    Can anyone give me some suggestions for this....
    Thanks!

    Qiu (guest) wrote:
    : In the browser/applet, the default "print" button can only
    print
    : screen to local printer, not the data I want. Use Report
    server,
    : I can't directly print to client side printer. Is there a way
    to
    : print data to local printer after press a button?
    Are u using Run_Product function in the when button pressed,
    then u can specify the format in which u want the output, option
    available are HTML and PDF, report server runs the report on the
    server and sends the output to the client machine. On the client
    machine u have to open the file and print it. I cannot print the
    report itself on the client machine.
    Try.
    Sailesh
    null

  • Auto remove of log files on the client-side is not working

    Hi,
    I have a setup for one-to-one client/server replication database. Everything is replicated ok.
    But on the client side, I see the log.00000000xx files are not removing at all,
    while the server has only 2 last log.00000000xx files left. But if I switch the role of the client/server,
    the newly server will eventually removed the unused log.00000000xx file, and have two last log file left.
    Both client and server database environment setup has called dbenvp->log_set_config(dbenvp, DB_LOG_AUTO_REMOVE, 1).
    Is there any additional setting for the client-side to auto remove the unused log files?
    Thanks,
    Sandra

    Hi.
    First, what version are you running? We created a test to confirm that this feature is
    working as expected on both a master and a client site. What flags do you have set
    for replication? I think we need to have you run with replication verbose messages
    set on the client site and possibly other diagnostics in order to determine what is different
    about your setup. We should take that level offline. Verbose messages can generate
    a large amount of output.
    You can contact me at the typical [email protected] and we'll move it
    forward that way. Thanks.
    Sue LoVerso
    Oracle

  • URGENT: Need to read file on client side from a 9i form

    Hi
    I have developed a 9i form and I assumed I could use TEXT_IO to read a file on the client side and insert the data into a database table. However, I have just tested the form and discovered that TEXT_IO only looks for files on the application server and NOT the client side.
    Does anyone know of a forms package in 9i that will do this for me? Using ftp to get the file onto the application server is not really an option.

    Francois
    We are sure that we do not have the WebUtil package installed in our environment. We are using a thrid party forms 9i application which we can tailor by adding our own forms to the existing menus. The third party application has some upload screens provided that are able to do upload a file without using WebUtil. Is there any other way this could be done? I have asked the third party to provide some asistance with this but they are not too forthcoming. Is there any other way you know of using Oracle/forms that allows a file to be read on the client side and sent to the application server? Oracle logs was mentioned by someone I talked to but this means nothing to me.

  • Merging randomly-named XML data file on client-side with pdf designed in Livecycle 7.0 (and addition

    Okay, as a heads up I work for a financial institution and we are converting our legacy "jetforms" to pdf format. I have in my staff for the project, 2 code developers and myself- a form designer. We have currently spent 2 months in trial and error attempting to resolve this problem, please let us know anything you can have. All client-side (internal) machines are running Windows XP and Adobe Reader 7.0.7
    The software we use as a financial institution allows our users to export a customer's data file onto their machine which is then renamed to include the member's account number and first and last name for our staff to determine which data file they need more accurately. In legacy jetforms, we have developed a program that pushes the data from the customers file that they select, into the jetform that they want to open and the matching fields in the data file fill in the fields of the jetform. Clean and simple.
    Now, i have hit nothing but frustration when attempting to perform the same process with pdfs using a form designed in livecycle designer 7. First, i see no obvious command for opening a pdf and importing a data file using a command line, like pdfmerge or something of the sort in which an xml data file can be specified and a pdf can be specified. I saw something like it using an fdf format and attempted to do this but apparently reader cannot import the data into the pdf that was designed adobe livecycle 7. All i have been seeing is database connections and using javascript inside the form to populate fields based on these database connections, etc. etc. or doing a manual file>import data>etc. which we don't want to have our staff do. We do not have reader extensions enabled, simply because i cannot get an adobe representative to call me and discuss pricing nor see any estimated pricing chart around. I don't know if reader extensions are necessary for this or not but i'm becoming very very frustrated with it.
    We don't want a complex server-side data connection binding with dynamic input. No, we just want it where our developers can say "if this data file is selected, and this pdf form is selected run this command" which would be a simple pdfmerge type solution. Is this possible or do i need to stay with jetforms until our software the billion dollar financial institution uses does form building inside its own application? I don't want to fight about who is better, what version to use, etc. I just want the straight up honest truth. If you need to know the pricing that the reader extensions would have to go by, assume there will be 500 client computers that will need to use it.

    From your post it sounds like you are Central Pro (a product for which I am by no means an expert), but you say you want to upgrade to a newer product from your "legacy" one. Is there a reason for this? Have your requirements change so that it no longer fits them? Central is still in the current Adobe roster and as far as I know there is no plans to get rid of it any time soon, so if it does everything you want I don't see why you would want to change.
    There is no product in the LiveCycle suite that merges xml data into a form from the command line. LiveCycle (with the exception of Designer) is a suite of server products, so the closest you would come is LiveCycle Forms (merge the xml and create a fillable PDF) or LiveCycle Print (merge the xml and print the form).
    Hope this helps somewhat.
    Chris
    Adobe Enterprise Developer Support

  • Read and write info from/to file available at client side.

    Hi,
    I have some table name in one CSV file at client side.
    once you get list of tables name from input CSV file at client side.
    Need to run one query to know total rows and size of table in MB , this i need to repeat for all tables which i got from input file.
    finally write 'table name | total rows | size of table in MB' whole info in another CSV file at client side. this output CSV file name will contain timestamp.
    Please guide me in detail how to read and write file avail at client side.
    I am using sql developer at client side.
    version : oracle11g
    Thanks in advance.

    This is a simple SQL question and this forum is for SQLDEveloper, however, this is a question for our SQL*Plus support which can help with this.
    clear SCREEN
    set FEEDBACK off
    set head off
    --Gather stats to populate rownums and avg length of rows.
    --These are not exact sizes (obviously) but you get the idea.
    begin
    dbms_stats.gather_schema_stats ('<YOUR_SCHEMA');
    end;
    select TABLE_NAME||','||NUM_ROWS||','||ROUND((NUM_ROWS*AVG_ROW_LEN)/(1024*1024)) CSV
    from USER_TABLES
    where num_rows is not null order by num_rows desc;

  • Possible to delete Offline Files content for a specific user from the Client Side Cache (CSC) ?.

    Hello Everyone,
    We would like to implement a script to delete the offline files in the Client Side Cache (CSC) for a nominated user (on Windows 7 x64 enterprise).
    I am aware that;
    1. We can use a registry value to flush the entire CNC cache (for all users) next time the machine reboots.
    2. If we delete the user's local profile it appears that Windows 7 also removes their content from the local CSC.
    However, we would like to just delete the CSC content for a particular nominated user without having to delete their local user profile.
    In our environment we have many users that share workstations but only use them occasionally. We don't use roaming profile so we would like to retain all the users' local profiles but still delete the CSC content for any users that haven't
    logged on in a week.
    Any ideas or info would be appreciated !
    Thanks, Makes

    Hi,
    I don't think this is possible.
    If you want to achieve it via script, I suggest you post it in official script forum for more professional help:
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/home?category=scripting
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Karen Hu
    TechNet Community Support

  • "ORA-03113: end-of-file on communication channel error" in client side

    Problem Description: we have a production server that oracle 11gr2 installed and oracle clients (application servers) with 11gr2 clients. Sometimes we encounter internal server error 500 at the application server side; and when we check out the application server logs we see ORA-03113 error code.
    when we look at the corresponding error on the Oracle Database Server side we saw the following output in the alert_orcl.log :
    Fatal NI connect error 12170.
    VERSION INFORMATION:
    TNS for 64-bit Windows: Version 11.2.0.1.0 - Production
    Oracle Bequeath NT Protocol Adapter for 64-bit Windows: Version 11.2.0.1.0 - Production
    Windows NT TCP/IP NT Protocol Adapter for 64-bit Windows: Version 11.2.0.1.0 - Production
    Time: 09-ŞUB-2011 12:46:15
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12535
    TNS-12535: TNS: İşlem süresi aşıldı
    ns secondary err code: 12609
    nt main err code: 0
    nt secondary err code: 0
    nt OS err code: 0
    Client address: (ADDRESS=(PROTOCOL=tcp)(HOST=10.1.10.144)(PORT=59999))
    Wed Feb 09 12:46:15 2011
    what could be the problem or how can i trace it in order to determine the exact problem? is there any parameter that i need to adjust in client side to ensure that every connection reaches the production server ?

    There is often an ORA-0600 or ORA-7445 behind these.
    These should produce an entry in the alert log and an associated trace file which a) can be used in the ORA-600/7445 lookup tool on Metalink and also uploaded to Oracle Support.
    Edited by: Dom Brooks on Feb 10, 2011 1:08 PM
    A bit quick to answer - I didn't see the large section of TNS information from the alert log.

Maybe you are looking for

  • Relation between 'only balance in local currency'  check box and OBA1-KDF

    Hi, in the master data of the GL account, the check box 'only balance in local currency' should be unchecked it to set that account as Valuation account, i.e in the OI exchange rate defferences? or , if the account takes only in local balance also se

  • CONVERSION AGENT 4.0

    Hi All! I'm new on this tool, and I need to convert a X12 v2003 message (Message 830 - Planning schedule with release capability) to an IDoc. I didn't find this version of X12 message (version 2003) on the library that is installed with the CA. Is th

  • BA00 Output

    Hello Everybody, I need to trigger the ALE through output when a Sales Order is created. Can someone tell me how to do that? What are all the setting that I must take care of for that? Thanks, Sneha.

  • Slide Show or On Line Gallery to a Website

    I can use either but I'd prefer the on line gallery. After creating it, can I copy or move it to my website? I'm NOT a techie at this but can follow step by step directions. Also, can either be e-mailed? Thanks for your (speedy) help!

  • Stream Source + JMS

    I have a webservice that i send a SOAP Message to with xml files as attachements. i consume the attachments into a StreamSource then try to send this to a queue in the form of a jms message. i get the error that the object could not be serialized. i