Running shellscripts

Hi friends
can we run shellscripts or any operating system commands from the report(6i)?

Your shell script needs access to database? Have it source the username and password from a file instead. Not a whole heck of a lot better as it's still left clear text on disk, but it won't show up in ps output for all users to see and access should be limited to the peoplesoft OS user and root if you set the permissions properly. Make it the scripts responsibility to get the info. I've seen it done that way a few places.

Similar Messages

  • Can anyone please  suggest for the following query relating to OEDQ ?

    I have to process 10M  records through batch matching by Oracle EDQ.  There will be 10 file(.csv)  each size 1M. They will be placed landing area of EDQ one by one separately. Given, All 10 file should have same number of columns & same order of columns. I have to process them one by one sequentially through only single batch contact match job.
    Condition is : 
    Only one batch job will be executed 10 times to process them. At each iteration/operation, one file (.csv) will be taken as input in that job. As we know, only one source is present in  job. I have to create /run ShellScript which will be passing  one file to the single snapshot  via single datastore from the landing area of EDQ. Once the one input file  is passed and complete matching is done, Without changing anything, Is it possible to pass 2nd input file  to that snapshot via previously created datastore by that Shell-script.
    I mean, I want to pass one by one file  sequentially  via  single snapshot via single datastore to a batch job  using unix shellscript. 
    Is it feasible to consider in my project????
    Any suggestion will be highly appreciated. Thanks in advance.

    Hi Mike,
    Thanks for the quick response.
    Keeping in mind source will be changed sequentially/one after another but the target is constant & the same JOB will be executed each time.
    suppose, I have two file in the landing area of EDQ. These file are:  PersonData.csv  and goutam.csv
    PersonData.csv is used in current data store.
    File in the working area:    C:\Program Files\Datanomic\dnDirector\config\landingarea\PersonData.csv
    Snapshot is using  this datastore. I have right clicked on the snapshot. I have done setting externalize option enable.
    I am using the command:
    java -jar jmxtools.jar runopsjob -job "Testing for R3  source A" -project EDQ-CDS -runlabel Nov2014 -nowait -u dnadmin -p p4dqnvo2 localhost:9005
    This command is successfully executing batch job "Testing for R3  source A "   where source is PersonData.csv.
    Now, I  want to use the following command with externalize option to execute  the file goutam.csv as source  by the above job.
    I am using the below command:
    java -jar jmxtools.jar runopsjob -job "Testing for R3  source A" -project EDQ-CDS -runlabel Nov2014 -D externalized=goutam -nowait -u dnadmin -p p4dqnvo2 localhost:9005
    this command also executes the file PersonData.csv instead of goutam.csv file.  In the above command I have highlighted  externalize option with deep black color . please let me know how I write this externalize option in the command so that it should execute goutam.csv file.
    Meanwhile, I am googling to find solution.
    Regards,
    Goutam Samanta

  • Reg:Unix shellscripts running java programs

    hi,
    We are using unix shell scripts , by running that script it will execute some java programs.
    when we running shell scripts, which executes the programs it is generating some log files ie some error is occuring.
    i want to why these files are generating
    Thanks and Regards,
    Meer S.

    HI ,
    we are running the shell script which runs java programs,
    we are getting the result no problem ,
    but it is generating the unwanted ORBTRC files
    we are using websphere application server.
    we donot want these orbtrc files.
    HOW CAN WE DISABLE THE FILES
    pls guide this.
    Thanks and regards,

  • Running OS command in ODI

    Hi all,
    We are migrating from Informatica's DIM to ODI. In DIM, we can run the OS command as shown below.
    if [ -f /tmp/test.txt ]; then
    rm /tmp/test.txt
    fi
    However, in ODI, we try to use OS Command and put it the above codes. It just doesn't work. We know we can put in the code in a shell script file and call it from ODI. But, we just don't want to put everything to shell scripts. Please kindly help. We are running ODI 11g in Unix.
    Regards,
    nww
    ODI-1226: Step OS Command 1 fails after 1 attempt(s).
    ODI-1242: Operating system command execution fails.
    Caused By: java.io.IOException: Cannot run program "if": error=2, A file or directory in the path name does not exist.
         at java.lang.ProcessBuilder.start(ProcessBuilder.java:460)
         at java.lang.Runtime.exec(Runtime.java:605)
         at java.lang.Runtime.exec(Runtime.java:443)
         at java.lang.Runtime.exec(Runtime.java:340)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.launchProcess(SnpSessTaskSql.java:3116)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execOsOrders(SnpSessTaskSql.java:1539)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execOsOrders(SnpSessTaskSql.java:1503)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java:2770)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2515)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:534)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:449)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1954)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:322)
         at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:224)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:246)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:237)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:794)
         at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:114)
         at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
         at java.lang.Thread.run(Thread.java:736)
    Caused by: java.io.IOException: error=2, A file or directory in the path name does not exist.
         at java.lang.UNIXProcess.<init>(UNIXProcess.java:53)
         at java.lang.ProcessImpl.start(ProcessImpl.java:101)
         at java.lang.ProcessBuilder.start(ProcessBuilder.java:453)
         ... 19 more

    Hi,
    I believe, OS command cannot handle all these commands. If you are thinking that anybody can delete the script file and odi will fail to execute then it will be better you create the shellscript file by odi and run it by odi and delete it by odi as well. You can use OdiOutFile here.
    Thanks.

  • How i will run copy the file in oracle 7.3 ?

    how i will run copy the file in oracle 7.3.
    new version of oracle copy function is available in util_file but in oracle 7.3 this is not available.here i am using 7.3.
    please help
    Thanks
    Deepak S.

    The technique used to be to send messages from your procedure to a waiting shellscript listener using DBMS_PIPE. You would write a script (could be ksh, Perl, Ruby etc) on the server with a loop in which it connects to the database and waits for DBMS_PIPE messages. When it gets one, it executes the command that was contained in the message and loops around to continue waiting again.
    7.3 is really ancient though. If you're running it at all this far out of support it should really just be ticking over and not subject to new development.

  • Auto run application

    I want to develop a application that auto run on the server everyday.
    The application should be satisfy the following requirement:
    1. auto run on scheduled time
    2. immediately run after the server restart
    I suppose to use Servlet. plse give me any idea.
    sample code or example is helpful, Thank a lot !

    hi,
    if you use the solution with the crontab your java program is monitored. if the program crashes the cron starts it again. put you have to write a shellscript to start the javaprogram and to check out the program already runs.
    here a little script to start
    #=====================================
    CLASSPATH=**your CLASSPATH**
    JAVA_HOME=**your JAVA_HOME**
    PATH=$PATH:$JAVA_HOME/bin
    **your environment**
    export CLASSPATH JAVA_HOME PATH **your environment**
    #is the program running? (not the best solution but it should work ;-))
    a=`ps -ef | grep **your programm**`
    if [ "$a" == "" ]
    then
    nohup java **your program** 1>**your logfile** 2>&1
    fi
    #=====================================
    the crontab entry:
    */10 * * * * your program
    the 5 starts mean:
    minute,hour, day,month,day of week -> look at the man page (man 5 crontab)
    to edit the crontab use the command crontab -e under the useraccount where the program should run.
    to write a startscript (rc-Script) you can look at the skeleton-file. normaly it is in /etc/rc.d. name skeleton.
    copy that file and edit it. after that link the file to the runlevel-directory.
    hope it helps
    carsten

  • Shellscripts as Concurrent Job

    Hi All,
    DB 10g, ebs 11i on AIX
    I have to run one shell script through concurrent.
    got mos : 29086.1 helpfull but there is some confusion I have.
    Please clarify :
    $0 - Shellscript name the script name right ???
    $1 - Oracle username/password apps/password right ????
    $2 - User_id I can get it from fnd_user right ????
    $3 - Oracle Applications username the application user say TEST
    $4 - Concurrent request id how can I get this ?????????????
    I have store my shell script in $FND_TOP/bin, is this the right place ??????
    Also confused with the (c) part of the mos (shell script example)
    Create a symbolic link between the program fndcpesr in $FND_TOP/bin
    and your program (without the .prog extension). For example:
    ln -s $FND_TOP/$APPLBIN/fndcpesr $GL_TOP/$APPLBIN/fred
    Please suggest if some one any idea ????
    Thanks in ADV !

    HI,
    When the host concurrent program is invoked five standard parameters are passed in $0 thru $4. The five standard parameters do not need to be defined on the Concurrent Program Parameters Form.
    $0 - Shellscript name the script name right ???
    $1 - Oracle username/password apps/password right ????
    $2 - User_id I can get it from fnd_user right ????
    $3 - Oracle Applications username the application user say TEST
    $4 - Concurrent request id how can I get this ?????????????All the parameter mentioned above will be picked automatically..no need to define them explicitily.
    I have store my shell script in $FND_TOP/bin, is this the right place ??????This location depend on application under which you are defining your concurrent program. IF application name is Application object library then FND_TOP/bin is perfect.
    ln -s $FND_TOP/$APPLBIN/fndcpesr $GL_TOP/$APPLBIN/fredsay you have made XX_TEST.prog file in $XX_TOP/bin, in this case you require this to soft link with fndcpesr executable in $FND_TOP/bin..for this below command need to be executed:-
    ln -s $FND_TOP/$APPLBIN/fndcpesr $XX_TOP/bin/XX_TEST
    in case you are making .prog file in $FND_TOP then
    ln -s $FND_TOP/$APPLBIN/fndcpesr $FND_TOP/$APPLBIN/XX_TEST
    Thanks,
    JD

  • Run a SH script

    i need to execut a shell script from the terminal. That SH script needs the SU permission. But when i try to SU and put my password it refuses it. What can i do to run my SH script?
    greetings,
    Paulo

    PauloGuedes wrote:
    i need to execut a shell script from the terminal. That SH script needs the SU permission.
    what do you mean?? if you mean you want to run it as root then run it with sudo.
    But when i try to SU and put my password it refuses it.
    what exactly are you putting in? su is the command to witch users. there is no need to do it and if you do do it it has to be done in a separate command. but if you want to run a script as root just enter
    sudo path/to/shellscript
    you'll have to enter your admin password (which you won't see). that's normal.
    Message was edited by: V.K.

  • Need advice on SunOS 5.10 ssh shell adapter to run mainframe shell scripts

    We need adapter to run the custom shell scritps placed in Sun OS 5.10 using ssh.
    Can we use ShellScript Adapter and declare custom actions?
    Do we need root user access for this?
    As of now we got a normal user access on the box for SSH and tried (ShellScript, AIX, HPAIX, Redhatlinux etc..) adapters, but we are getting below errors.
    Is there any way that we can shift the path after login to /usr/sbin to search for useradd etc.. scripts?
    Or this is due to we don't have root user access or equalent user?
    Failed to find 'useradd' in the path '/opt2/microfocus/cobol/bin /opt2/q_tibero3/script /opt2/q_tibero3/bin /opt2/q_tibero3/client/bin32 /usr/local/bin /bin /usr/bin . /opt/SUNWspro/bin/ /etc /opt/EMCpower/bin/sparcv9 /opt/VRTSvcs/EMC/bin /etc/emc/bin /usr/ccs/bin /usr/sfw/bin /usr/ucb /opt2/microfocus/cobol/bin /opt2/oracle/product/10.2.0/bin /oframe2/batch/OpenFrame/bin /oframe2/batch/OpenFrame/util /oframe2/batch/OpenFrame/core/bin /oframe2/batch/prosort/bin /oframe/common5/ofwork/shbin /oframe/common4/scripts/common /oframe/common4/scripts/batch /export/home/rhsqbtch/shbin&#xD;' Failed to find 'usermod' in the path

    -have an extreme wired to the 360 downstairs( utilizing really only 1 port), have the HDD connected to the extreme (i figure if its connected via ethernet to the extreme, even though the imac is wireless, being connected to the source (extreme + hdd) i shouldn't get lag watching HD or using the 360 online.
    Then the express is upstairs in the office where the modem plugs into the express and the express shares the network to the extreme.
    now with this method i figure i can have an 802.11n (b/g compatible) network and all my devices can run off it. (don't need pure N as the 360 is connected via ethernet)
    because the printer is in the office i would set the printer up to be shared via the imac and the laptop could just use the shared printer (i don't print too often). id prolly have to buy a wireless adapter for the dell but i could also share the network via ethernet to from the imac.
    That is a possibility. However you may find that the wireless signal can not penetrate the 2 walls and still be usable. You will only know by trying it.
    the 2nd:
    * the extreme is upstairs with the modem connecting to the imac, PC, HDD and printer wired.
    the airport express is downstairs with the xbox 360 (im assuming the ethernet port can send info and not just receive packets). this way the modems are linked up and (i hope) the network is running at 5Ghz so its fastest possible for streaming HD/SD media.
    running this method i would need to set the imac up to host a G network for the iphones as they don't support N.
    the laptop can connect wirelessly.
    The iMac would NOT be able to host a G network of the iPhone. The iMac would need to be connected wirelessly to the signal provided by the AirPort Extreme base station (AEBS). It can't connect to a wireless network as a client AND host a wireless network at the same time.

  • Problem with threads running javaw

    Hi,
    Having a problem with multi thread programming using client server sockets. The program works find when starting the the application in a console using java muti.java , but when using javaw multi.java the program doesnt die and have to kill it in the task manager. The program doesnt display any of my gui error messages either when the server disconnect the client. all works find in a console. any advice on this as I havent been able to understand why this is happening? any comment would be appreciated.
    troy.

    troy,
    Try and post a minimum code sample of your app which
    does not work.
    When using javaw, make sure you redirect the standard
    error and standard output streams to file.
    Graeme.Hi Graeme,
    I dont understand what you mean by redirection to file? some of my code below.
    The code works fine under a console, code is supposed to exit when the client (the other server )disconnects. the problem is that but the clientworker side of the code still works. which under console it doesnt.
    public class Server{
    ServerSocket aServerSocket;
    Socket dianosticsSocket;
    Socket nPortExpress;
    ClientListener aClientListener;
    LinkedList queue = new LinkedList();
    int port = 0;
    int clientPort = 0;
    String clientName = null;
    boolean serverAlive = true;
    * Server constructor generates a server
    * Socket and then starts a client threads.
    * @param aPort      socket port of local machine.
    public Server(int aPort, String aClientName, int aClientPort){
    port = aPort;
    clientName = aClientName;
    clientPort = aClientPort;
    try{
    // create a new thread
    aServerSocket = new ServerSocket(port) ;
    // connect to the nPortExpress
    aClientListener = new ClientListener(InetAddress.getByName(clientName), clientPort, queue,this);
    // aClientListener.setDaemon(true);
    aClientListener.start();
    // start a dianostic port
    DiagnosticsServer aDiagnosticsServer = new DiagnosticsServer(port,queue,aClientListener);
    // System.out.println("Server is running on port " + port + "...");
    // System.out.println("Connect to nPort");
    catch(Exception e)
    // System.out.println("ERROR: Server port " + port + " not available");
    JOptionPane.showMessageDialog(null, (e.toString()),"ERROR: Server port " + port + " not available", JOptionPane.ERROR_MESSAGE);
    serverAlive = false;
    System.exit(1);
    while(serverAlive&&aClientListener.hostSocket.isConnected()){
    try{
    // connect the client
    Socket aClient = aServerSocket.accept();
    //System.out.println("open client connection");
    //System.out.println("client local: "+ aClient.getLocalAddress().toString());
    // System.out.println("client localport: "+ aClient.getLocalPort());
    // System.out.println("client : "+ aClient.getInetAddress().toString());
    // System.out.println("client port: "+ aClient.getLocalPort());
    // make a new client thread
    ClientWorker clientThread = new ClientWorker(aClient, queue, aClientListener, false);
    // start thread
    clientThread.start();
    catch(Exception e)
    //System.out.println("ERROR: Client connection failure");
    JOptionPane.showMessageDialog(null, (e.toString()),"ERROR: Client connection failure", JOptionPane.ERROR_MESSAGE);
    }// end while
    } // end constructor Server
    void serverExit(){
         JOptionPane.showMessageDialog(null, "Server ","ERROR: nPort Failure", JOptionPane.ERROR_MESSAGE);
         System.exit(1);
    }// end class Server
    *** connect to another server
    public class ClientListener extends Thread{
    InetAddress hostName;
    int hostPort;
    Socket hostSocket;
    BufferedReader in;
    PrintWriter out;
    boolean loggedIn;
    LinkedList queue;      // reference to Server queue
    Server serverRef; // reference to main server
    * ClientListener connects to the host server.
    * @param aHostName is the name of the host eg server name or IP address.
    * @param aHostPort is a port number of the host.
    * @param aLoginName is the users login name.
    public ClientListener(InetAddress aHostName, int aHostPort,LinkedList aQueue,Server aServer)      // reference to Server queue)
    hostName = aHostName;
    hostPort = aHostPort;
    queue = aQueue;
    serverRef = aServer;      
    // connect to the server
    try{
    hostSocket = new Socket(hostName, hostPort);
    catch(IOException e){
    //System.out.println("ERROR: Connection Host Failed");
    JOptionPane.showMessageDialog(null, (e.toString()),"ERROR: Connection to nPort Failed", JOptionPane.ERROR_MESSAGE);     
    System.exit(0);
    } // end constructor ClientListener
    ** multi client connection server
    ClientWorker(Socket aSocket,LinkedList aQueue, ClientListener aClientListener, boolean diagnostics){
    queue = aQueue;
    addToQueue(this);
    client = aSocket;
    clientRef = aClientListener;
    aDiagnostic = diagnostics;
    } // end constructor ClientWorker
    * run method is the main loop of the server program
    * in change of handle new client connection as well
    * as handle all messages and errors.
    public void run(){
    boolean alive = true;
    String aSubString = "";
    in = null;
    out = null;
    loginName = "";
    loggedIn = false;
    while (alive && client.isConnected()&& clientRef.hostSocket.isConnected()){
    try{
    in = new BufferedReader(new InputStreamReader(client.getInputStream()));
    out = new PrintWriter(new OutputStreamWriter(client.getOutputStream()));
    if(aDiagnostic){
    out.println("WELCOME to diagnostics");
    broadCastDia("Connect : diagnostics "+client.getInetAddress().toString());
    out.flush();
    else {       
    out.println("WELCOME to Troy's Server");
    broadCastDia("Connect : client "+client.getInetAddress().toString());
         out.flush();
    String line;
    while(((line = in.readLine())!= null)){
    StringTokenizer aStringToken = new StringTokenizer(line, " ");
    if(!aDiagnostic){
    broadCastDia(line);
    clientRef.sendMessage(line); // send mesage out to netExpress
    out.println(line);
    out.flush();
    else{
    if(line.equals("GETIPS"))
    getIPs();
    else{
    clientRef.sendMessage(line); // send mesage out to netExpress
    out.println(line);
    out.flush();
    } // end while
    catch(Exception e){
    // System.out.println("ERROR:Client Connection reset");
                             JOptionPane.showMessageDialog(null, (e.toString()),"ERROR:Client Connection reset", JOptionPane.ERROR_MESSAGE);     
    try{
    if(aDiagnostic){
    broadCastDia("Disconnect : diagnostics "+client.getInetAddress().toString());
    out.flush();
    else {       
    broadCastDia("Disconnect : client "+client.getInetAddress().toString());
         out.flush();
    // close the buffers and connection;
    in.close();
    out.close();
    client.close();
    // System.out.println("out");
    // remove from list
    removeThreadQueue(this);
    alive = false;
    catch(Exception e){
    // System.out.println("ERROR: Client Connection reset failure");
    JOptionPane.showMessageDialog(null, (e.toString()),"ERROR: Client Connection reset failure", JOptionPane.ERROR_MESSAGE);     
    }// end while
    } // end method run
    * method run - Generates io stream for communicating with the server and
    * starts the client gui. Run also parses the input commands from the server.
    public void run(){
    boolean alive = true;
    try{
    // begin to life the gui
    // aGuiClient = new ClientGui(hostName.getHostName(), hostPort, loginName, this);
    // aGuiClient.show();
    in = new BufferedReader(new InputStreamReader(hostSocket.getInputStream()));
    out = new PrintWriter(new OutputStreamWriter(hostSocket.getOutputStream()));
    while (alive && hostSocket.isConnected()){
    String line;
    while(((line = in.readLine())!= null)){
    System.out.println(line);
    broadCast(line);
    } // end while
    } // end while
    catch(Exception e){
    //     System.out.println("ERRORa Connection to host reset");
    JOptionPane.showMessageDialog(null, (e.toString()),"ERROR: Connection to nPort reset", JOptionPane.ERROR_MESSAGE);
    try{
    hostSocket.close();
         }catch(Exception a){
         JOptionPane.showMessageDialog(null, (a.toString()),"ERROR: Exception", JOptionPane.ERROR_MESSAGE);
    alive = false;
    System.exit(1);
    } // end method run

  • New DVR Issues (First Run, Channel Switching, etc.)

    I've spent the last 30 minutes trying to find answers through the search with no luck, so sorry if I missed something.
    I recently switched to FIOS from RCN cable in New York.  I've gone through trying to setup my DVR and am running into issues and was hoping for some answers.
    1.  I setup two programs to record at 8PM, I was watching another channel at the time and only half paying attention.  Around 8:02 I noticed a message had popped up asking if I would like to switch channels to start recording.  I was expecting it to force it to switch like my old DVR, but in this case it didn't switch and I missed the first two minutes of one of the shows.  I typically leave my DVR on all day and just turn off the TV, this dual show handling will cause issues with that if I forget to turn off the DVR.  Is there a setting I can change that will force the DVR to choose one of the recording channels?
    2.  I setup all my recordings for "First Run" because I only want to see the new episodes.  One show I setup was The Daily Show on comedy central, which is shown weeknights at 11pm and repeated 3-4 times throughout the day.  My scheduled recordings is showing all these as planned recordings even though only the 11pm show is really "new".  Most of the shows I've setup are once a week so they aren't a problem, but this seems like it will quickly fill my DVR.  Any fixes?
    Thanks for the help.
    Solved!
    Go to Solution.

    I came from RCN about a year ago.  Fios is different in several ways, not all of them desirable.  Here are several ways to get--and fix--unwanted recordings from a series recording setup.
    Some general principles. 
    Saving changes.  When you originally create a series with options, or if you go back to edit the options for an existing series, You MUST save the Series Options changes.  Pretty much everywhere else in the user interface, when you change an option, the change takes effect immediately--but not in Series Options.  Look at the Series Options window.  Look at the far right side.  There is a vertical "Save" bar, which you must navigate to and click OK on to actually save your changes.  Exiting the Series Options window without having first saved your changes loses all your attempted changes--immediately.
    Default Series Options.  This is accessed  from [Menu]--DVR--Settings--Default Series Options.  This will bring up the series options that will automatically be applied to the creation of a NEW series. The options for every previously created series will not be affected by a subsequent modification of the Default Series Options.  You should set these options to the way you would like them to be for the majority of series recordings that you are likely to create.  Be sure to SAVE your changes.  This is what you will get when you select "Create Series Recording" from the Guide.  When creating a new series recording where you think that you may want options different from the default, select "Create Series with Options" instead.  Series Options can always be changed for any individual series set up later--but not for all series at once.
    Non-series recordings.  With Fios you have no directly available options for these.  With RCN and most other DVRs, you can change the start and end times for individual episodes, including individual episodes that are also in a series.  With Fios, your workarounds are to create a series with options for a single program, then delete the series later;  change the series options if the program is already in a series, then undo the changes you made to the series options later; or schedule recordings of the preceding and/or following shows as needed.
    And now, to the unwanted repeats. 
    First, make sure your series options for the specific series in question--and not just the series default options--include "First Run Only".  If not, fix that and SAVE.  Then check you results by viewing the current options using the Series Manager app under the DVR menu.
    Second, and most annoying, the Guide can have repeat programs on your channel tagged as "New".  It happens.  Set the series option "Air Time" to "Selected Time".  To make this work correctly, you must have set up the original series recording after selecting the program in the Guide at the exact time of a first run showing (11pm, in your case), and not on a repeat entry in the Guide.  Then, even it The Daily Show is tagged as New for repeat showings, these will be ignored. 
    Third, another channel may air reruns of the program in your series recording, and the first showing of a rerun episode on the other channel may be tagged as "New".  These can be ignored in your series if you set the series option "Channel" to "Selected Channel".  Related to this, if there is both an SD and HD channel broadcasting you series program, you will record them both if the series option "Duplicates" is set to "Yes".  However, when the Channel option is set to "Selected Channel", the Duplicates Option is always effectively "No", regardless of what shows up on the options screen.  
    As for you missing two minutes,  I have sereral instances in which two programs start recording at the same time.  To the best of my recollection, whenever the warning message has appeared, ignoring it has not caused a loss of recording time.  You might have an older software version.  Newest is v.1.8.  Look at Menu--Settings--System Info.  Or, I might not have noticed the loss of minutes.  I regularly see up to a minute of previous programming at the start of a recording, or a few missing seconds at the beginning or end of a recording.  There are a lot of possibilities for that, but the DVR clock being incorrect is not one of them.  With RCN, the DVR clocks occasionally drifted off by as much as a minute and a half.

  • SSO to partner application running under IIS

    Hi,
    We have a complete set-up for 9iAS Release2 where some applications are running. In parallell we have an application running under IIS, and would now like to enable the IIS application as a partner application to 9iAS letting the 9iAS SSO server handle the authentication.
    In the documentation of Oracle Proxy Plug-in I read that this proxy plug-in can be used to proxy requests from IIS to Oracle http server (OHS) and also in this way enable SSO.
    My question is if this can be done only for applications running under 9iAS but having IIS as web server, or if it is also possible like in our case to enable SSO via the proxy plug-in to applications runnind under IIS?
    If this is not supported is the only available solution to use the SSO SDK in my IIS application?
    Thanks and regards,
    Rikard

    Here's a DIY answer.
    See Metalink Note 269820.1 which shows you how to use Perl to overwrite the host name in the HTTP header and remove the port number.

  • Report developed in 6i and open and run in 10g, Web Layout is not working

    Hi,
    Initially reports were developed in Reports 6i now we need to convert into 10g. I just opened the .rdf in Reports10g. Report is successfully running in paper layout and showing the data. But when i try to run the report in Web Layout im getting a BLANK INTERNET EXPLORER SCREEN. Why is it so? What should i do to run my report successfully in Web Layout? When i see Web Source, i am seeing the below code,
    <%@ taglib uri="/WEB-INF/lib/reports_tld.jar" prefix="rw" %>
    <%@ page language="java" import="java.io.*" errorPage="/rwerror.jsp" session="false" %>
    <%@ page contentType="text/html;charset=ISO-8859-1" %>
    <!--
    <rw:report id="report">
    <rw:objects id="objects">
    </rw:objects>
    -->
    <html>
    <head>
    <meta name="GENERATOR" content="Oracle 9i Reports Developer"/>
    <title> Your Title </title>
    <rw:style id="yourStyle">
    <!-- Report Wizard inserts style link clause here -->
    </rw:style>
    </head>
    <body>
    <rw:dataArea id="yourDataArea">
    <!-- Report Wizard inserts the default jsp here -->
    </rw:dataArea>
    </body>
    </html>
    <!--
    </rw:report>
    -->
    Please, guide to achive the Web Layout Report.
    Thanks & Rgds,
    M Thiyagarajan

    Hello,
    The answer is in the Migration FAQ :
    When I open an Oracle6i Reports Developer report in the Oracle Reports Builder 10g and run my Web layout, I get an empty Web page in my browser.
    http://www.oracle.com/technology/products/reports/htdocs/faq/faq_migration.htm#368
    Regards

  • Error while running a Java Program

    Can anyone help me,
    I am getting the following error while running a Java program, Below is the exception thrown, please help.
    java.nio.BufferOverflowException
    at java.nio.Buffer.nextPutIndex(Buffer.java:425)
    at java.nio.DirectByteBuffer.putChar(DirectByteBuffer.java:463)
    at org.jetel.data.StringDataField.serialize(StringDataField.java:295)
    at org.jetel.data.DataRecord.serialize(DataRecord.java:283)
    at org.jetel.graph.DirectEdge.writeRecord(DirectEdge.java:216)
    at org.jetel.graph.Edge.writeRecord(Edge.java:288)
    at com.tcs.re.component.RESummer1.run(RESummer1.java:505)
    java.nio.BufferOverflowException
    at java.nio.Buffer.nextPutIndex(Buffer.java:425)
    at java.nio.DirectByteBuffer.putChar(DirectByteBuffer.java:463)
    at org.jetel.data.StringDataField.serialize(StringDataField.java:295)
    at org.jetel.data.DataRecord.serialize(DataRecord.java:283)
    at org.jetel.graph.DirectEdge.writeRecord(DirectEdge.java:216)
    at org.jetel.graph.Edge.writeRecord(Edge.java:288)
    at com.tcs.re.component.RECollectCont.run(RECollectCont.java:304)

    Ok, let's see. Write the following class:
    public class Grunt {
      public static void main(String[] args) {
        System.out.println("Hello Mars");
    }Save it as "C:\Grunt.java", compile by typing:
    javac c:\Grunt.javaRun by typing:
    java -classpath "C:\" GruntDoes it say "Hello Mars"? If yes, go back to your program and compare for differences (maybe you used the "package" statement?).
    Regards

  • Error while running a report

    Hi all,
    I am getting this particular error while running a report. The error is:
    <b>SQL Error: 604
    System error in program SAPLRRK0 and form RSRDR;SRRK0F30-01-
    Diagnosis
    This internal error is a targeted termination since the program has an
    incorrect status.
    Procedure
    Analyse the situation and inform SAP.
      Notification Number BRAIN 299 </b>
    Could anyone tell me what that means?
    Thanks In advance,
    Raj

    Hi Raj,
    There are a few OSS Notes for your issue.
    If your Query has hierarchy in it then check 734184
    If your query is based on Infoset then check Note 784502 and 701941.
    Also check 668921.
    Bye
    Dinesh

Maybe you are looking for

  • All my songs are greyed out on my iPod except for the songs in my itunes library

    I have over 10,000 songs on my ipod touch and when I connect to my Macbook Pro and go to itunes it states that there are over 10,000 songs on my ipod, but when I click to play them a little exclamation mark appears before it. (As it does when the sou

  • ICLOUD NOT UPLOADING PHOTOS FROM PC

    Hi, I can not get the photos to upload from the PC to the Icloud. (and hence they are not on the Ipad) I have checkied all the setup tick boxes as per the Icloud PC setup but it's still showing just over 1Gb. And yes Im signed up for 20Gb storage spa

  • Error lights for paper and cartridge

    The error lights for paper feeding problems and cartridge jams are both on. I have checked both the paper feeding and the movement of the cartridge. There are no problems in either area (no paper is jammed anywhere and the cartridge can move freely).

  • User Name in Public shared folder

    I deleted the shared folders in my sharing system preferences, but when I add the public folders back the user's name is omitted. Now when accessing the shared computer, all I see is Public and Public-1. Is there anyway to get the folders back with t

  • Flex with ACME installation of Coldfusion

    After a tremendously-difficult attempt (my own fault largely!) I have been able to get up the "ACME Guide" installation of Apache, ColdFusion, MySQL and Eclipse. Now it's time to add Flex (and hopefully PHP5 eventually...). I am in good shape at this