Update a component without restart Siebel

Hello!
Is it possible to update some of the Siebel components (Applets, Business Components, Integration Objects and other)
without restart the Siebel service?
(I know that this is possible for the Tasks and the Workflow.)
Thanks very much for help!

Hi,
The Applets,BC & IO are called Siebel Objects, not components. Any update or change done in the Siebel Objects should be compiled and the srf has to be replaced in the server. It definitely requires server restart to take effect.
Regards,
Joseph

Similar Messages

  • Updating Member Server Without Restarting It

    Hi,
     I was working on creating Gpo's programatically. My goal was to allow users to RDP on Member servers. For that I added user groups under Restricted group sections in Gpo.
     Now in order to update the changes I used " gpupdate /force " command but its not working. . . user is not able to RDP on Member Server unless we restart the
    Member Server through administrator's account.
     I have also switched my Firewall off.
     I am looking for the solution where I will not need to restart Member server for updating the userGroups under Computer management section of member server.
    Thanks,
    Anand Kothekar

    A restart should not be required. Please make sure that changes are taking place when you force the update: Mainly check the membership of local
    Remote Desktop Users group. If it is not updating then you need to troubleshoot that: https://social.technet.microsoft.com/Forums/windowsserver/en-US/6e6821a5-1568-4ced-9302-0b0d0070bda8/how-to-troubleshoot-why-a-particular-gpo-does-not-work
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • Update server classes without restarting sun one web server 6.1

    hi,
    I'm facing a problem in updating server classes on sun one web server 6.1. i did not deploy any application and we are using simple jdbc+jsp approach.i write a class for db connections and now whenever i made some changes in it i must have to restart web server for changes to take effect. I also delete class files from classcache folder but it doesn't work.
    my class is placed on /opt/ and this path is also placed in web server class paths.
    i do not want to restart web server again and again. can some one tell me how to solve this problem.
    Regards,
    Kashif.

    if you just change your jsp files, you don't need to restart WebServer. WS will automatically recompile your jsps when it find the changes.
    You may also use reconfig command to reload server.

  • Server Admin | Server Updates | updated to 10.5.5 WITHOUT restart?

    A curious thing. I wonder whether anyone else experienced the same, or similar…
    When the update to Mac OS X Server 10.5.5 was released, very soon after its announcement, I used Server Admin | Server Updates to apply the update to my Mac OS X Server 10.5.4 (PowerPC Xserve).
    I expected a restart to be required.
    The update completed, but no restart was required!
    Amazed, I made an Apple Remote Desktop connection to the server and found that it was reporting itself as 10.5.5. Definitely, without a restart.
    I lacked confidence at that point, so I did restart the server, without being asked to.
    I might also try to run the combo updater. Just to be doubly sure that the whole caboodle installed as it should have.
    I wonder how it apparently got from 10.5.4 to 10.5.5 without a restart; and whether anyone else has experienced such oddities.

    I don't know what you've experienced
    1. Mac OS X Server 10.5.4 on G4 PowerPC XServe
    2. Server Admin on my Macbook Pro identified that the remote Xserve should gain an update to 10.5.5
    3. I followed Server Admin's invitation.
    3. An ARD view of the remote server's display (Apple menu | About This Mac) showed:
    * 10.5.5
    — with no invitation to restart, no log in.
    I simply connected via ARD, observed, thought, "What? 10.5.5? That's impossible. I haven't restarted".
    it's factually impossible for a server to go from 10.x.y to 10.x.(y+1) without a restart.
    Hence my bug report to Apple

  • Updating a JTree without application restart

    I would like to update the JTree in my application without restarting the application. The JTree elements come from a file, therefore, I update the file and want the JTree to be refreshed! I understand that this is done with swing and model and already do so eg: I update combo boxes and these automatically reflect the changes. I use the code below to update the boxes:-
    public void updateBoxes()
    DefaultComboBoxModel newComboModel = new DefaultComboBoxModel(getItems());
    myBox.setModel(newComboModel);
    I would basically like to do exactly the same using another model for a JTree.  Is this possible?  Also, as the JTree has actually been added to a scroll panel, so does this affect things?  Hopefully I can use a simple method like the one provided above for updaing a combo box.
    Thanks for any assistance

    * TestTree.java
    package com.test;
    import javax.swing.tree.DefaultMutableTreeNode;
    public class TestTree extends javax.swing.JFrame {
        private javax.swing.JScrollPane mainScrollPane;
        private javax.swing.JButton btnChooseThree;
        private javax.swing.JTree mainTree;
        private javax.swing.JButton btnChooseOne;
        private javax.swing.JPanel buttonPanel;
        private javax.swing.JButton btnChooseTwo;
        public TestTree() {
            java.awt.GridBagConstraints gridBagConstraints;
            mainScrollPane = new javax.swing.JScrollPane();
            mainTree = new javax.swing.JTree();
            buttonPanel = new javax.swing.JPanel();
            btnChooseOne = new javax.swing.JButton();
            btnChooseTwo = new javax.swing.JButton();
            btnChooseThree = new javax.swing.JButton();
            addWindowListener(new java.awt.event.WindowAdapter() {
                public void windowClosing(java.awt.event.WindowEvent evt) {
                    exitForm(evt);
            mainScrollPane.setViewportView(mainTree);
            getContentPane().add(mainScrollPane, java.awt.BorderLayout.CENTER);
            buttonPanel.setLayout(new java.awt.GridBagLayout());
            btnChooseOne.setText("One");
            btnChooseOne.setMaximumSize(new java.awt.Dimension(70, 27));
            btnChooseOne.setMinimumSize(new java.awt.Dimension(70, 27));
            btnChooseOne.setPreferredSize(new java.awt.Dimension(70, 27));
            btnChooseOne.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    btnChooseOneActionPerformed(evt);
            gridBagConstraints = new java.awt.GridBagConstraints();
            gridBagConstraints.insets = new java.awt.Insets(2, 2, 2, 2);
            buttonPanel.add(btnChooseOne, gridBagConstraints);
            btnChooseTwo.setText("Two");
            btnChooseTwo.setMaximumSize(new java.awt.Dimension(70, 27));
            btnChooseTwo.setMinimumSize(new java.awt.Dimension(70, 27));
            btnChooseTwo.setPreferredSize(new java.awt.Dimension(70, 27));
            btnChooseTwo.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    btnChooseTwoActionPerformed(evt);
            gridBagConstraints = new java.awt.GridBagConstraints();
            gridBagConstraints.insets = new java.awt.Insets(2, 2, 2, 2);
            buttonPanel.add(btnChooseTwo, gridBagConstraints);
            btnChooseThree.setText("Three");
            btnChooseThree.setMaximumSize(new java.awt.Dimension(70, 27));
            btnChooseThree.setMinimumSize(new java.awt.Dimension(70, 27));
            btnChooseThree.setPreferredSize(new java.awt.Dimension(70, 27));
            btnChooseThree.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    btnChooseThreeActionPerformed(evt);
            gridBagConstraints = new java.awt.GridBagConstraints();
            gridBagConstraints.insets = new java.awt.Insets(2, 2, 2, 2);
            buttonPanel.add(btnChooseThree, gridBagConstraints);
            getContentPane().add(buttonPanel, java.awt.BorderLayout.NORTH);
            DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("Three");
            rootNode.add(new DefaultMutableTreeNode("One"));
            rootNode.add(new DefaultMutableTreeNode("Two"));
            rootNode.add(new DefaultMutableTreeNode("Three"));
            mainTree.setModel(new javax.swing.tree.DefaultTreeModel(rootNode));
            pack();
        private void btnChooseThreeActionPerformed(java.awt.event.ActionEvent evt) {
            DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("Three");
            rootNode.add(new DefaultMutableTreeNode("One"));
            rootNode.add(new DefaultMutableTreeNode("Two"));
            rootNode.add(new DefaultMutableTreeNode("Three"));
            mainTree.setModel(new javax.swing.tree.DefaultTreeModel(rootNode));
        private void btnChooseTwoActionPerformed(java.awt.event.ActionEvent evt) {
            DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("Two");
            DefaultMutableTreeNode subNode;
            subNode = new DefaultMutableTreeNode("One");
            subNode.add(new DefaultMutableTreeNode("Sub One"));
            subNode.add(new DefaultMutableTreeNode("Sub Two"));
            subNode.add(new DefaultMutableTreeNode("Sub Three"));
            rootNode.add(subNode);
            subNode = new DefaultMutableTreeNode("Two");
            subNode.add(new DefaultMutableTreeNode("Sub One"));
            subNode.add(new DefaultMutableTreeNode("Sub Two"));
            subNode.add(new DefaultMutableTreeNode("Sub Three"));
            rootNode.add(subNode);
            subNode = new DefaultMutableTreeNode("Three");
            subNode.add(new DefaultMutableTreeNode("Sub One"));
            subNode.add(new DefaultMutableTreeNode("Sub Two"));
            subNode.add(new DefaultMutableTreeNode("Sub Three"));
            rootNode.add(subNode);
            mainTree.setModel(new javax.swing.tree.DefaultTreeModel(rootNode));
        private void btnChooseOneActionPerformed(java.awt.event.ActionEvent evt) {
            DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("One");
            DefaultMutableTreeNode subNode;
            DefaultMutableTreeNode subSubNode;
            subNode = new DefaultMutableTreeNode("One");
            subSubNode = new DefaultMutableTreeNode("Sub One");
            subSubNode.add(new DefaultMutableTreeNode("Very Sub A"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub B"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub C"));
            subNode.add(subSubNode);
            subSubNode = new DefaultMutableTreeNode("Sub Two");
            subSubNode.add(new DefaultMutableTreeNode("Very Sub 1"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub 2"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub 3"));
            subNode.add(subSubNode);
            subSubNode = new DefaultMutableTreeNode("Sub Three");
            subSubNode.add(new DefaultMutableTreeNode("Very Sub X"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub Y"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub Z"));
            subNode.add(subSubNode);
            rootNode.add(subNode);
            subNode = new DefaultMutableTreeNode("Two");
            subSubNode = new DefaultMutableTreeNode("Sub One");
            subSubNode.add(new DefaultMutableTreeNode("Very Sub A"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub B"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub C"));
            subNode.add(subSubNode);
            subSubNode = new DefaultMutableTreeNode("Sub Two");
            subSubNode.add(new DefaultMutableTreeNode("Very Sub 1"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub 2"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub 3"));
            subNode.add(subSubNode);
            subSubNode = new DefaultMutableTreeNode("Sub Three");
            subSubNode.add(new DefaultMutableTreeNode("Very Sub X"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub Y"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub Z"));
            subNode.add(subSubNode);
            rootNode.add(subNode);
            subNode = new DefaultMutableTreeNode("Three");
            subSubNode = new DefaultMutableTreeNode("Sub One");
            subSubNode.add(new DefaultMutableTreeNode("Very Sub A"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub B"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub C"));
            subNode.add(subSubNode);
            subSubNode = new DefaultMutableTreeNode("Sub Two");
            subSubNode.add(new DefaultMutableTreeNode("Very Sub 1"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub 2"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub 3"));
            subNode.add(subSubNode);
            subSubNode = new DefaultMutableTreeNode("Sub Three");
            subSubNode.add(new DefaultMutableTreeNode("Very Sub X"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub Y"));
            subSubNode.add(new DefaultMutableTreeNode("Very Sub Z"));
            subNode.add(subSubNode);
            rootNode.add(subNode);
            mainTree.setModel(new javax.swing.tree.DefaultTreeModel(rootNode));
        private void exitForm(java.awt.event.WindowEvent evt) {
            System.exit(0);
        public static void main(String args[]) {
            new TestTree().show();
    }

  • I am unable to make or receive calls after the 6.1 update.  I have restarted, restored and reprogrammed without any positive results.

    I am unable to make or receive calls since I completed the 6.1 Apple update.  I have restarted, restored and reprogrammed without any positive results.  I hope that someone can assist me.
    Thank you in advance!  I appreciate your help!

    Thank you!  I went to the Verizon Wireless Store and everything is okay with regard to my carrier.

  • Windows Media Player keeping Automatic Maintenance window/Windows Updates from doing auto-restart

    I have a system that is connected to a domain, and it runs a video playlist in Windows Media Player for digital signage upon bootup (and auto-login).  WMP is set to loop the videos over and over again, but it also is preventing automatic updates from
    installing and/or auto-restarting at 3:00AM in the morning (and yes, the system power management is set to keep the computer on all the time).
    How can I fix this?
    I have a GPO set up to install updates and restart automatically (option 4).  I tried the GPO option to use the Windows 8 maintenance window to install updates, and also tried turning that option off and just using a 3:00AM restart period.  Neither
    option seems to work, so it looks like Windows Media Player is preventing an auto-restart to finish the update installation.  Is there any way around this, so that Windows Media Player doesn't stop Windows Updates from doing its job?  I don't care
    if that means the video stops playing because it just starts up again on the next bootup.
    I looked at the WMP GPO's and the only option that sounds like it's related is the option to turn on or off the auto-updating of media info for WMP, but it has nothing to do with what I'm trying to accomplish.  If I missed something, let me know. 
    If there is some other way to accomplish this, such as associating and launching the playlist file with the Xbox Videos app, I would be fine with that, but I need it to loop the playlist continually (I also use the Shuffle option
    in WMP - ***see note below for another question).  I still want the system to automatically install updates and reboot on a regular schedule despite the video playing in the foreground.
    ***Side question: is there any way to turn Repeat and Shuffle options on in WMP without having to load the GUI (for scripting a playlist)?
    Just FYI: this system is actually using Windows Embedded 8.1 Industry Enterprise (from a MAPS account), but it isn't customized aside from not having the standard WinRT apps from a stock Win 8.1 install loaded - it is a stock install from the ISO. 
    From what I understand, it is the same as Windows 8.1 Enterprise, except that it is only licensed to be used as an "appliance" machine for a single role - which it is.  So I'm assuming that there are no actual differences from a "regular"
    Windows 8.1 SKU that would cause this issue.  If I am completely mistaken about this, please notify me on it.  The reason I'm making this statement is in case there are any differences in Embedded 8.1 Industry Enterprise that I am not aware of. 
    Otherwise, I welcome any assistance that would target a "regular" version of 8.1 Enterprise.  NOTE:  Someone said to post this into the Windows Embedded forum, but the only one that exists is the one for POSready - and this is HARDLY the
    POSready version of Windows Embedded that I'm using.

    Hi,
    Did you use the policy Local Computer Policy\Administrative Templates\Windows Components\Windows Update\Always automatically restart at the scheduled time?
    I noticed an description "restart with logged on users for scheduled automatic updates installations" policy is enabled, then this policy has no effect." it means if system installed some updates which unneeds restart computer, this policy would has no effect.
    In my opinion, your problem should not caused by WMP setting. please check your installed updates whether they need restart computer.
    In addition, Power Managment in Control Panel also can prevent the schedule task running.
    Control Panel\System and Security\Power Options\Edit Plan Settings\Change advanced power settings\Sleep\Allow wake timers
    Please make sure this option is enable.
    Roger Lu
    TechNet Community Support

  • How to make changes runtime in ApplicationResources.prop without restarting

    hi,
    We are using Oracle App. server 10g server. Our application is so critical, we can not restart server frequently for small changes. Our client might need to change error message and other user message on regular basis. We use ApplicationResources.properties for messages. How we can update these messages at run time without restarting app server. Is it possible in Oracle App. Server. I know it is possible on JBOSS but not sure about Oracle App. Server.
    I tried to copy ApplicationResources.properties in application folder on server, but it does not give effect. Generally, we used to do this with JBoss server, but I am new to Oracle App. server, is it possible? If possible - how?
    I checked with my other team members, they are not sure. I also tried to find Java ranch and also other forums without success. your input might be very useful.
    One probable solution is to access these messages from database, but do we have any other option if we want to use ApplicationResources.properties ?
    Thanks in advance.

    Hi,
    FBZP includes many activities. Some of them could be maitained directly in production. What activity do you refer to? Anyway, if this activity is locked for customizing in production, there are, generally, two ways to deal with this:
    a) open the client through SCC4
    b) changing the maintance preferences for the table/view in question
    In both case, you should consult your BASIS team first.
    Regards,
    Eli

  • My 4 can see home wifi but won't use it without restarting

    I have wifi at home and at work. Many times when I come home, my 4 will automatically connect to my home wifi, but seemingly won't use it without restarting the phone. I tried going into the network settting and did the reset and went and re-entered the wifi passwords for home and work; and soon after displayed the same bahvior. Work wifi doesn't bother it. My 4 didn't aquire this problem until OS6 and still does it under 6.0.1. Turning off the phone's wifi and back on doesn't help. Renewing lease on wifi doesn't help. My wife has the same phone on the same wifi and the same time and it does'nt do this. She doesn't have wifi at work.
    Sometimes I get very sporadic an limited data, could be using 3G. After phone restart the phone is fine until another day when the problem returns. I've tried turning ap's off but nothing helps but a restart.

    The first thing you need to do is restart your router.  Unplug it, wait 1-2 minutes, plug it back in and wait for it to connect to your provider and download the latest IP informaiton.
    Next go into settings and forget your wifi network.
    Reconnect to your home wifi.
    Go into the settings for your network and set the proxy to Auto not off or manual.
    Hopefully this will work for you.  I had the same problem when I updated to iOS 6.0.1 and setting the proxy to auto seems to have cleared it up.
    Not sure what Apple has done to the firmware and how it interacts with wifi, but hopefully they will have it worked out when iOS 6.1 is released.

  • Is it possible to deploy an EAR to a Netweaver AS without restarting the AS

    The application has been designed to use multiple Java Resource bundles that contain various messages and properties that are updated quite often.  The Resource Bundles have been separated into separate SCAs so that they can be deployed separate from other parts of the application.  Is it possible to deploy the EARs contained within these SCAs without restarting the Java AS?
    We are working with NWDI 7.1 deploying to Java 1.5 running on zLinux

    Hi,
    That should be no problem at all. Any machine with or without NI software can use an FTP client to transfer files to and from an RT target such as CompactRIO.
    You should be able to build the executable on the development machine, transfer it via USB drive to another machine and then use FTP software to transfer the file from there. You'll just need the IP address of the target and login information.
    For more information on FTP transfer with or without MAX to RT targets, see the following KB article:
    http://digital.ni.com/public.nsf/allkb/4DCF9D581C491E9F8625711B005FA539?OpenDocument
    I hope this helps, please don't hesitate to reply with more questions on the subject.
    Regards,
    Tom
    Applications Engineering, NI UK

  • Software Update has stalled after restart

    Updates for Safari 6.2.5, iTunes 12.1.2, and Security Update have stalled after restarting the computer on Mini i7 10.8.5. – the progress bar hangs at ~75% through. What should I do?

    Unfortunately, I am past being able to do that b/c the computer has restarted and all I have is the little 'Installing Software Update' window on a gray hatched background without any buttons or controls to use. I tried send a photo of the screen but now iPhoto on my MBPi7 10.8.5 crashes after failing to load the images from my iPhone 5c. The MBP has 'successfully' installed the same updates I am having trouble with on my Mini – something is really fracked up with these updates!
    What shall I do with my Mini? – I do not know if force power down in mid-update will destroy my OS and data.

  • IPod Touch Won't Update to iOS5 without error message (-43) stating all contents will be deleted. How can I update without everything being deleted?

    Hi there,
    I have an iPod Touch 3rd generation (Model A1318). For the last several months I keep trying to update to iOs 5 and it gets stuck during the backup phase and an error message pops up:
    As half of my songs are not iTunes purchases, therefor not on the cloud, I do not want to start from scratch and have everything deleted. Also, Apple does not allow you to extract songs back off the pod easily to backup, so it would present a serious hassle reuploading hundreds of songs from CDS etc. Can anyone help explain this message? Has anyone hit continue with the update occurring smoothly without anything being erased? Any guidance much appreciated. I tried several times disabling my anti virus software during the process like others have said on the boards and in the Apple store but the same message and outcome. For reference, I'm using Windows Vista and the most recent iTunes 10.6.1.

    See my response to your other post.
    The automatic iTunes backup does not contain any synced items like apps, music (either iTunes purchases or not). There is no difference in what is backed up. See:
    iTunes: About iOS backups

  • My macbook pro keeps booting up, then after a few seconds, goes back to the sign in page. This happened after I was doing software updates and my computer restarted in the middle of an update. Help! Thanks.

    My macbook pro keeps booting up, then after a few seconds, goes back to the sign in page. This happened after I was doing software updates and my computer restarted in the middle of an update. Help! Thanks.

    Start up in Safe Mode.
    http://support.apple.com/kb/ph14204
    Repair Disk    Section: "Try Disk Utility"
    http://support.apple.com/en-us/HT203176

  • My MacBook Pro stated that it needed to be updated. I clicked yes to restart the computer and update but when it restarted it stays on the gray screen with the apple logo and then pops up, stating "unable to find driver for this platform." What do I do?

    My MacBook Pro stated that it needed to be updated. I clicked yes to restart the computer and update but when it restarted it stays on the gray screen with the apple logo and then pops up, stating "unable to find driver for this platform." What do I do?

    Boot into Recovery by holding down the key combination command-R at the startup chime. Release the keys when you see a gray screen with a spinning dial.
    Note: You need an always-on Ethernet or Wi-Fi connection to the Internet to use Recovery. It won’t work with USB or PPPoE modems, or with networks that require any kind of authentication other than a WPA or WPA2 Personal password.
    When the Mac OS X Utilities screen appears, follow the prompts to reinstall the Mac OS. You don't need to erase the boot volume, and you won't need your backup unless something goes wrong. If your Mac didn’t ship with Lion, you’ll need the Apple ID and password you used to upgrade, so make a note of those before you begin.
    Don't install the Thunderbolt update -- it's defective.

  • I have a used mac computer. I want to sync and update my iphone. Currently itunes tells me that my iphone is connected to a different itunes account. How do I make itunes sync and update my phone without deleting all the current information on my phone?

    I have a used mac computer. I want to sync and update my iphone. Currently itunes tells me that my iphone is connected to a different itunes account and will sync, but delete everything from my phone. How do I make itunes sync and update my phone without deleting all the current information on my phone?

    Iphone will sync with one and only one cpomptuer at a time.  Syncing to another will erase the current content and replace with content from the new computer.  This is the design of the  iphone.
    It will erase the content when you sync.
    Why not update from the comptuer with which you normally sync?

Maybe you are looking for

  • Time machine b/u slow using thunderbolt adapter to firewire drive

    I have a new iMac and I find that a Time Machine backup is very slow. I'm using an iOmega Desktop HD. It's 2TB, and it has a Firewire 400, Firewire 800, and a USB 2.0 port. I'm backing up TM to the Firewire 800 port, using a Thunderbolt to Firewire a

  • How to call url from abap in background

    Hi, I could open url but it opens browser window i saw several threads on how to cal url in background but no good answer kindly help thanks B

  • PID and fuzzy logic toolkit

    He I'm trying to create a motor position control using the PID toolkit. Is there a step response feature or another function that shows the response of the PID system, percent overshoot, settling time, etc? If not, is there a way I can create a step

  • Blurring out a piece of video

    I've got a phone number in a piece of video that I want to eliminate. Unfortunately, the number is in a place that can't be cropped out. Is there any mechanism in FCP 7 where I can blur out the phone number without compromising the rest of the video?

  • Sqlplus installation in ubuntu linux

    Hi, I have installed Oracle Expression Edition on my system running Ubuntu. I want to run sqlplus from the bash shell. Please let me how can I run it ? Do I need to install any other tool? Thanks & Regards, Babu