Remove and add database in AG to enable service broker

Hi All,
Right now am testing in AG, I have a scenario where I created AG without enabling service broker, As per experts Service broker should be enabled first before AOAG since I did not, I remove the DB from AG enabled back service broker and the add back the DB
it worked fine also as a point to make when i remove the DB I did not perform any backups in primary DB.
I have 2 questions ->
1) Is this above method correct
2) Will removing and add a DB will affect the AG setup (though no backup will be performed)
Thanks
Best Regards Moug

1. Yes you need to remove the database from the AG in order to enable service broker, so the process you've followed is fine
2. That's no problem. If you remove the database from AG you can add it back in on the primary, then do a "Join Only" (no need for another backup and restore) and it should work fine. If it complains about the log chain not being recent enough
you could take another tlog backup and apply it to the secondary and attempt to join again.

Similar Messages

  • How do I find out who is attached to my sharing of my account and remove and add someone? Is 5 devices the limit?

    Devices sharing is 5?
    Where do I go to remove and add a devic

    Hey 1980justme!
    I have an article for you that can help you address this question:
    iTunes Store: Authorize or deauthorize your Mac or PC
    http://support.apple.com/kb/ht1420
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • Java mapping for Remove and Add of  DOCTYPE Tag

    HI All,
    i have one issue while the Java mapping for Remove and Add of  DOCTYPE Tag   in Operation Mapping .
    it says that , while am testing in Configuration Test "  Problem while determining receivers using interface mapping: Error while determining root tag of XML"
    Receiver Determination...
    error in SXMB MOni
    " SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="RCVR_DETERMINATION">CX_RD_PLSRV</SAP:Code>
      <SAP:P1>Problem while determining receivers using interface mapping: Error while determining root tag of XML: '<!--' or '<![CDATA[' expected</SAP:P1>
    plz provide solutions
    Thanks in advance.

    Hi Mahesh,
    I understand, you are using extended Receiver Determination using Operational Mapping (which has Java Mapping). And, there is an error message u201CError while determining root tag of XMLu201D, when you are doing configuration test.
    Can you please test, the Operational Mapping (which has Java Mapping) separately in ESR, with payload which is coming now. It should produce a XML something like this [Link1|http://help.sap.com/saphelp_nwpi711/helpdata/en/48/ce53aea0d7154ee10000000a421937/frameset.htm]
    <Receivers>
    <Receiver>
      <Party agency="016" scheme="DUNS">123456789</Party>
      <Service>MyService</Service>
    </Receiver>
    <Receiver>
      <Party agency="http://sap.com/xi/XI" scheme="XIParty"></Party>
      <Service>ABC_200</Service>
    </Receiver>
    </Receivers>
    If it is not (I Think it will not), then there is some problem in Java Mapping coding. Please correct it. Last option, if your Java code is small in length; you may paste it here, so that we can have a look at the cause of issue.
    Regards,
    Raghu_Vamsee

  • How to remove and add plotted data?

    In my code below I would like to add two buttons and by clicking on a button("Remove") it will remove one by one plotted data,and plot it back by clicking on the button("Add") such as the examples:
    Full data plotted by running the class
    Now by a single click on a Remove button last data point disappear
    another click and again last data point disappear, and so on
    The inverse operation would be performed by clicking on "Add" button: each click will add back a data point
    import javafx.application.Application;
    import javafx.beans.property.SimpleDoubleProperty;
    import javafx.event.EventHandler; 
    import javafx.scene.chart.NumberAxis;
    import javafx.scene.chart.XYChart;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.chart.LineChart;
    import javafx.scene.control.Button;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.BorderPane;
    public class XYMove extends Application {
    BorderPane pane;
    XYChart.Series series1 = new XYChart.Series();
    SimpleDoubleProperty rectinitX = new SimpleDoubleProperty();
    SimpleDoubleProperty rectX = new SimpleDoubleProperty();
    SimpleDoubleProperty rectY = new SimpleDoubleProperty();
    @Override
    public void start(Stage stage) {
    final NumberAxis xAxis = new NumberAxis(12, 20, 1);
    double max = 12;
    double min = 3;
    max *= (1+((double)3/100));
    min *= (1-((double)3/100));
    final NumberAxis yAxis = new NumberAxis(min, max, 1);
    xAxis.setAnimated(false);
    yAxis.setAnimated(false);
    yAxis.setTickLabelFormatter(new NumberAxis.DefaultFormatter(yAxis) {
        @Override
        public String toString(Number object) {
            return String.format("%2.0f", object);
    final LineChart<Number, Number> lineChart = new LineChart<Number, Number>(xAxis, yAxis);
    lineChart.setCreateSymbols(false);
    lineChart.setAlternativeRowFillVisible(false);
    lineChart.setAnimated(false);
    lineChart.setLegendVisible(false);
    series1.getData().add(new XYChart.Data(1, 3));
    series1.getData().add(new XYChart.Data(2, 8));
    series1.getData().add(new XYChart.Data(3, 6));
    series1.getData().add(new XYChart.Data(4, 7));
    series1.getData().add(new XYChart.Data(5, 5));
    series1.getData().add(new XYChart.Data(6, 6));
    series1.getData().add(new XYChart.Data(7, 4));
    series1.getData().add(new XYChart.Data(8, 7));
    series1.getData().add(new XYChart.Data(9, 6));
    series1.getData().add(new XYChart.Data(10, 7));
    series1.getData().add(new XYChart.Data(11, 6));
    series1.getData().add(new XYChart.Data(12, 7));
    series1.getData().add(new XYChart.Data(13, 6));
    series1.getData().add(new XYChart.Data(14, 12));
    series1.getData().add(new XYChart.Data(15, 10));
    series1.getData().add(new XYChart.Data(16, 11));
    series1.getData().add(new XYChart.Data(17, 9));
    series1.getData().add(new XYChart.Data(18, 10));
    pane = new BorderPane();
    pane.setCenter(lineChart);
    Scene scene = new Scene(pane, 800, 600);
    lineChart.getData().addAll(series1);
    stage.setScene(scene);        
    scene.setOnMouseClicked(mouseHandler);
    scene.setOnMouseDragged(mouseHandler);
    scene.setOnMouseEntered(mouseHandler);
    scene.setOnMouseExited(mouseHandler);
    scene.setOnMouseMoved(mouseHandler);
    scene.setOnMousePressed(mouseHandler);
    scene.setOnMouseReleased(mouseHandler);
    stage.show();
    EventHandler<MouseEvent> mouseHandler = new EventHandler<MouseEvent>() {
    @Override
    public void handle(MouseEvent mouseEvent) {
        if (mouseEvent.getEventType() == MouseEvent.MOUSE_PRESSED) {            
            rectinitX.set(mouseEvent.getX());
        else if (mouseEvent.getEventType() == MouseEvent.MOUSE_DRAGGED || mouseEvent.getEventType() == MouseEvent.MOUSE_MOVED) {
            LineChart<Number, Number> lineChart = (LineChart<Number, Number>) pane.getCenter();
            NumberAxis xAxis = (NumberAxis) lineChart.getXAxis();
            double Tgap = xAxis.getWidth()/(xAxis.getUpperBound() - xAxis.getLowerBound());
            double newXlower=xAxis.getLowerBound(), newXupper=xAxis.getUpperBound();            
            double Delta=0.3;
            if(mouseEvent.getEventType() == MouseEvent.MOUSE_DRAGGED){
            if(rectinitX.get() < mouseEvent.getX()&& newXlower >= 0){   
                newXlower=xAxis.getLowerBound()-Delta;
                newXupper=xAxis.getUpperBound()-Delta;
        else if(rectinitX.get() > mouseEvent.getX()&& newXupper <= 22){   
                newXlower=xAxis.getLowerBound()+Delta;
                newXupper=xAxis.getUpperBound()+Delta;
            xAxis.setLowerBound( newXlower );
            xAxis.setUpperBound( newXupper );                       
            rectinitX.set(mouseEvent.getX());                                
        public static void main(String[] args) {
            launch(args);
    }Thanks!

    I would use an ObservableList (probably backed by a LinkedList) of XYChart.Data to store the collection of "deleted" data points. Create the buttons as usual; your "Remove" button's event handler should remove the last element of the series and add it to the first element of the deleted items data points. The "Add" button should remove the first element of the deleted data points and add it to the end of the series. You can bind the "disable" property of the remove and add button to Bindings.isEmpty(series1.getData()) and Bindings.isEmpty(deletedDataPoints), respectively.
    Something like
    ObservableList<XYChart.Data<Number, Number>> deletedDataPoints = FXCollections.observableList(new LinkedList<XYChart.Data<Number, Number>>());
    removeButton.setOnAction(new EventHandler<ActionEvent>() {
      @Override
      public void handle(ActionEvent event) {
        deletedDataPoints.add(0, series1.getData().remove(series1.getData().size()-1));
    addButton.setOnAction(new EventHandler<ActionEvent>() {
      @Override
      public void handle(ActionEvent event) {
        series1.getData().add(deletedDataPoints.remove(0));
    removeButton.disableProperty().bind(Bindings.isEmpty(series1.getData()));
    addButton.disableProperty().bind(Bindings.isEmpty(deletedDataPoints));The other approach would be to use a separate List for all the data points, and keep an integer variable storing the number of data points displayed. Your "remove" button would decrement the number displayed, and your "add" button would increment the number displayed. Both would also call
    series1.getData().setAll(allDataPoints.sublist(0, numberOfDisplayedPoints));You might even be able to make the numberOfDisplayedPoints an IntegerProperty and bind the data property of the series to it in a nice way. This approach probably doesn't perform as well as the previous approach (using a stack of deleted points), because you are not directly giving the chart as much detailed information about what has changed.
    Both approaches get problematic (in the sense that you need to carefully define your application logic, and then implement it) if the underlying data has the potential to change.

  • Exception thrown when I remove and add Tab?

    Hi,
    I use the JTabbedPane, and I made a button, when it's pressed, it will remove all tab from the JTabbedPane, and then it will recreate every tab(update them) and add it back. But sometimes there's exception thrown, why is that? the exception are:
    java.lang.ArrayIndexOutOfBoundsException: 4 <------------------- this number always change
    at javax.swing.plaf.basic.BasicTabbedPaneUI.paintTabArea(BasicTabbedPaneUI.java:535)
    at javax.swing.plaf.basic.BasicTabbedPaneUI.paint(BasicTabbedPaneUI.java:497)
    at javax.swing.plaf.metal.MetalTabbedPaneUI.paint(MetalTabbedPaneUI.java:666)
    at javax.swing.plaf.metal.MetalTabbedPaneUI.update(MetalTabbedPaneUI.java:561)
    at javax.swing.JComponent.paintComponent(JComponent.java:541)
    at javax.swing.JComponent.paint(JComponent.java:808)
    at javax.swing.JComponent.paintChildren(JComponent.java:647)
    at javax.swing.JComponent.paint(JComponent.java:817)
    at javax.swing.JComponent.paintWithOffscreenBuffer(JComponent.java:4795)
    at javax.swing.JComponent.paintDoubleBuffered(JComponent.java:4748)
    at javax.swing.JComponent._paintImmediately(JComponent.java:4692)
    at javax.swing.JComponent.paintImmediately(JComponent.java:4495)
    at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:410)
    at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueueUtilities.java:117)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    Does anyone know why? Thx
    Adrian

    Does anyone know why? I still can't solve this problem, it just keep popping up, but the strange thing is after exception thrown, nothing has happeded, everything seems to be fine, the program still running, all those tabs are added.
    Does anyone know why?

  • How to remove and add the component to JFrame at runtime.

    Hi
    How to delete the JTabbedPane component from the Jframe at runtime and how to add the same component with different data at runtime.
    But the remaining components should not distrub.
    When i try to delete and add the component at runtime the remaing components are distrubed.
    when i minimize and maximize the screen, the components are adjusted. but i need a help on this without minimize and maximize the screen.

    Hi
    I am sending my code snippet, please look into this......i am doing the same even though i am not able to..................can u suggest anything seeing this code snippet.
    here one function called createtabpane (It creates the JTabbedpanes with the table information at runtime).
    private void getTimeSheetObj(String weekDate){
    //Object[][] rowObj=null;
    try {
    System.out.println("Inside the gettimesheet method try block");
    if(projTables!=null){
    for(int i=projTables.length-1; i>=0; i--){
    JTable jt = projTables;
    jTabbedPane_Main.remove(jt);
    System.out.println("Removing Table:"+i);
    jPanel_Tabbedpane.remove(jTabbedPane_Main);
    jTabbedPane_Main = new JTabbedPane();
    jTabbedPane_Main.revalidate();
    jPanel_Tabbedpane.revalidate();
    getContentPane().validate();
    getContentPane().repaint();
    jTabbedPane_Main.addChangeListener(new ChangeListener(){
    public void stateChanged(ChangeEvent ce){
    getTabbedPaneListenerValues();
    // this.setState(JFrame.ICONIFIED);
    // this.setExtendedState(JFrame.MAXIMIZED_BOTH);
    res = GetTimesheetResponseDocument.Factory.parse(new File("C:\\Narayana.xml"));
    response = res.getGetTimesheetResponse();
    proDets=response.getProjectDetailsArray();
    numOfPro = proDets.length;
    String taskDayValues[] = new String[8];
    System.out.println(numOfPro);
    proArr=new Object[numOfPro];
    Object[][] taskValues=null;
    for(int p = 0;p<numOfPro;p++){
    System.out.println("Inside1");
    taskDet = proDets[p].getTaskDetailsArray();
    taskValues = new Object[taskDet.length][8];
    for(int t=0;t<taskDet.length;t++){
    System.out.println("Inside2");
    taskValues[t][0] = (taskDet[t].getTaskName());
    taskValues[t][1] = (taskDet[t].getDay1HH()+":"+taskDet[t].getDay1MM()).toString();
    taskValues[t][2] = (taskDet[t].getDay2HH()+":"+taskDet[t].getDay2MM()).toString();
    taskValues[t][3] = (taskDet[t].getDay3HH()+":"+taskDet[t].getDay3MM()).toString();
    taskValues[t][4] = (taskDet[t].getDay4HH()+":"+taskDet[t].getDay4MM()).toString();
    taskValues[t][5] = (taskDet[t].getDay5HH()+":"+taskDet[t].getDay5MM()).toString();
    taskValues[t][6] = (taskDet[t].getDay6HH()+":"+taskDet[t].getDay6MM()).toString();
    taskValues[t][7] = (taskDet[t].getDay7HH()+":"+taskDet[t].getDay7MM()).toString();
    System.out.println("After taskvalues");
    proArr[p]=taskValues;
    createTabPanes(jTabbedPane_Main, proArr);
    System.out.println("outside");
    jPanel_Tabbedpane.add(jTabbedPane_Main);
    jTabbedPane_Main.getAccessibleContext().setAccessibleName("Proj");
    getContentPane().add(jPanel_Tabbedpane);
    pack();
    }catch(XmlException xe) {
    System.out.println("Inside the XmlException block");
    System.out.println(""+xe.getMessage());
    } catch(IOException ioe) {
    System.out.println("Inside the IOException block");
    System.out.println(""+ioe.getMessage());
    /* JOptionPane.showMessageDialog(null,
    "Values Displayed in the below tables",
    "Alert!",JOptionPane.ERROR_MESSAGE); */
    System.out.println("Initial JFrame Bounds:"+this.getBounds());

  • Powershell Script to Remove and Add the user with same permission

    Hi,
    I need to remove all users within all site collection of a web application and add them back with same permission level. We have a siteminder based custom trusted identity token issuer configured in our farm. The name of the issuer will be changed
    due to some architectural decissions , hence all users which are there before will be unidentified, hence need to be removed and added again.
    Currently each user looks like :                       c:0ǹ.t|Identity Token Issuer1|user1
    Post the change the user will look like:          c:0ǹ.t|Identity Token Issuer New|user1
    I am looking for a powershell script which can handle this operation.
    Thanks, Bivsworld

    Bivsworld,
    Below link should give you a start.
    http://www.sptechlearn.com/2014/10/delete-users-from-user-information-list.html

  • To remove (and add) a panel inside a dialog.

    hello
    I would like to change the layout of one dialog.
    I thought to do it by removing one panel an adding another.
    That is the code I wrote:
    import java.awt.Component;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    public class TestForChangePanel extends JFrame {
        PanelOne panelOne;
        PanelTwo panelTwo;
        public TestForChangePanel() { // costruttore
            panelOne = new PanelOne(this);
            panelTwo = new PanelTwo(this);
            changeThePanel(panelTwo);
            setSize(200, 150);
            this.setDefaultCloseOperation(EXIT_ON_CLOSE);
            setVisible(true);
        } // costruttore
        static public void main(String[] args) {
            TestForChangePanel testForChangePanel = new TestForChangePanel();
        public void changeThePanel(Component panel) {
            System.out.println("function to changethe Panel");
            if (panel instanceof PanelTwo) {
                remove(panelTwo);
                add(panelOne);
                System.out.println("put Panel One");
            if (panel instanceof PanelOne) {
                remove(panelOne);
                add(panelTwo);
                System.out.println("put Panel Two");
             validate();
        } // changeThePanel()
    }// class TestForChangePanel
    class PanelOne extends JPanel {
        JLabel labelOne = new JLabel("LABEL ONE");
        JButton jbOne = new JButton("Change");
        TestForChangePanel owner;
        PanelOne xxx = this;
        public PanelOne(TestForChangePanel ownr) {  // costruttore
            owner = ownr;
            this.add(labelOne);
            this.add(jbOne);
            jbOne.addMouseListener(new MouseAdapter() {
                @Override
                public void mouseClicked(MouseEvent e) {
                    JOptionPane.showMessageDialog(null, "mouse panel ONE");
                    owner.changeThePanel( xxx);
        } // costruttore
    }  // class PanelOne
    class PanelTwo extends JPanel {
        JLabel labelTwo = new JLabel("LABEL TWO");
        JButton jbTwo = new JButton("Change");
        TestForChangePanel owner;
         PanelTwo xxx = this;
        public PanelTwo(TestForChangePanel ownr) { // costruttore
            owner = ownr;
            add(labelTwo);
            this.add(jbTwo);
            jbTwo.addMouseListener(new MouseAdapter() {
                @Override
                public void mouseClicked(MouseEvent e) {
                    JOptionPane.showMessageDialog(null, "mouse panel TWO");
                    owner.changeThePanel(xxx);
        } // costruttore
    }  // class PanelTwoThere is not error in the execution of the code. But the layouth of the dialog does not change.
    Please, someone can tell me why the code doesn't work how I think it should have to do ?
    thank you
    regards
    tonyMrsangelo.

    I never had any problem with revalidate.I still don't understand the difference between validate() and revalidate(). The vast majority of time they are interchangeable and a repaint() is not required. However, I have noticed a few cases where validate() works and revalidate() doesn't (and vice-versa). I have also noticed a few cases where repaint() is required. Of course I can't remember all the situations, but here are a couple of examples showing problems:
    This posting shows a repaint() is required when removing a single component:
    [http://forums.sun.com/thread.jspa?forumID=31&threadID=789317&start=8]
    And this posting shows a repaint() is required when removing and adding a component (but only if the last component in the container is removed and added)
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ValidateTest extends JFrame implements ActionListener
         JComponent north;
         int number;
         public ValidateTest()
              north = new JPanel();
              getContentPane().add( north, BorderLayout.NORTH );
              north.add( new JButton("Button1") );
              north.add( new JButton("Button2") );
              north.add( new JButton("Button3") );
              north.add( new JButton("Button4") );
              JPanel south = new JPanel();
              getContentPane().add( south, BorderLayout.SOUTH );
              JButton validate = new JButton("Validate");
              validate.addActionListener( this );
              JButton revalidate = new JButton("Revalidate");
              revalidate.addActionListener( this );
              JButton repaint = new JButton("Repaint");
              repaint.addActionListener( this );
              south.add( validate );
              south.add( revalidate );
              south.add( repaint );
         public void actionPerformed(ActionEvent e)
              //  repaint() is needed in this case
              int position = 3;
              //  repaint is not needed in this case
    //          int position = 0;
              north.add( new JButton( "" + number++), position );
              String command = e.getActionCommand();
              if ("Validate".equals(command))
                   north.validate();
              else if ("Revalidate".equals(command))
                   north.revalidate();
              else
                   north.repaint();
         public static void main(String[] args)
              JFrame frame = new ValidateTest();
              frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
              frame.setSize(500, 200);
              frame.setLocationRelativeTo( null );
              frame.setVisible(true);
    You can even see in the JScrollPane tutorial they use revalidate without repaint when resizing the client area. I think, the key here is the "resizing" seems to automatically cause the area to be repainted.

  • Problems updating panel with remove() and add()

    Hi,
    I have a class which extends JPanel, and everytime I call repaint on it I am trying to add the contents of a Hashtable to the screen. If I do not include the this.removeAll() then it will add those components to the Container...problem is that it will add them everytime so I will have multiple copies of the same thing. If I try and remove them first (notice how I put a boolean in so that I dont remove them before they are added) before adding them (so clear the screen), then they will never appear, no matter where I put the removeAll() or where i put the add(). Same applies for a remove() statement on each individual component.
    I have spent hours on this stupid thing !
    Any ideas would be much appreciated
    Cheers
    Ray
    public void paintComponent(Graphics g) {
         super.paintComponent(g);
         if (painted) {
         this.removeAll();
         globalClock.setRate((int)nodeRef.getAverageRate());
         painted = true;
         //Iterate over the keys in the map
        Iterator keyIt = nodeRef.returnKeyIterator();
        Iterator valIt = nodeRef.returnValueIterator();
       while (keyIt.hasNext()) {
             String key = (String)keyIt.next();
            NodeObject node = (NodeObject)valIt.next();
            nameLabel = new JLabel("Client Name");
            nameField = new JTextField(key);
            currentTimeLabel = new JLabel("CurrentTime");
             currentTimeField = new JTextField(Double.toString(node.getCurrentTime()));
             updateLabel = new JLabel("Update Interval");
             updateField = new JTextField(Integer.toString(node.getInterval())); //default
             speedLabel = new JLabel("Clock Rate");
             speedField = new JTextField(Double.toString(node.getRate()));
             add(currentTimeLabel);
             add(currentTimeField);
             add(updateLabel);
             add(updateField);
             add(speedLabel);
             add(speedField);
            add(nameLabel);
             add(nameField);
        globalRateLabel = new JLabel("Global Speed");
        globalRateField = new JTextField(globalClock.getRate() + " %");
        globalRateField.setEditable(false);
        add(globalRateLabel);
        add(globalRateField);
    }

    Sometimes I will have two things in the hashTable, sometimes I will have one hundred !
    Each time repaint() is called I want this to represent the current status of the Hashtable, so If on one repaint there are 100 pairs in the Hashtable it will add all the details of these pairs to the Container, however on the next repaint if there are only two pairs I dont want the other 98 entries on the page at all. You cant do this with just a component modifier, you have to remove the component completely. I figured that the easiest way to do this would be just to remove all the components completely, and then add what was needed by going through the Hashtable again. (note:effiecency is not a concern)
    And yes I realise repaint() is called on resizes etc etc, but this wont adversely affect the program
    Ray

  • Is it fair to remove and add gestures from a view frequently on some events?

    I am adding and removing a gesture from a view frequently based on some events. I want to know is this a good way of coding, if no please let me know the reasons.

    Like most plugins, you'll need to uninstall Java Deployment Toolkit from outside Firefox. But... I don't see it in the Uninstall a Program Control Panel. So if you want to still have Java, I think your choices are:
    (1) Leave it fully disabled ("Never Activate")
    (2) Remove the registry entry Firefox uses to locate the plugin
    (3) Delete the plugin's DLL file from disk (or rename with an inactive extension like .OLD)
    The third is probably easier than the second, because you can learn the location of the DLL on disk by typing or pasting '''about:plugins''' in the address bar and pressing Enter.

  • How Do I Remove and Add Text To a .aep Movie Template?

    Hi,
    I have a .aep file that contains a video template. The template is made to be edited with Adobe After Effects. I am very new to the software and have no idea how to proceed. I have imported the .aep file  to After Effects and it shows up there just fine. the movie template consists of four or five different screens where the text is to be changed to text of my choice.  I need to change the text in each individual screen. How do I do it without changing the existing text effects?
    Can some one point me in the right direction?
    Thank you for any help you can give me I am confused as well as desperate! Help...

    Todd thank you also I will read the information that you sugested.
    Tontyp

  • Remove and Add not Working

    I am trying to kind of go back and forth, view one chart on button click and I have a back button, when clicked goes back to the main chart. It works the first time but not the second time. Can anyone help me?
    function buttonID06Click(e:MouseEvent) {
        removeChild(ButID06);
        TweenLite.to(MainChart, .5, {x:-210, y: -174, alpha:.06});
        TweenLite.from(Chart06, 1.5, {delay:.5, x:0, y:0, alpha:0});
        addChild(Chart06);
        BackToMain.x = 33
        BackToMain.y = 86
        TweenLite.from(BackToMain, .5, {alpha:1});
        addChild(BackToMain)
        BackToMain.addEventListener(MouseEvent.CLICK, BackToMainClick06, false, 0, true);
    function BackToMainClick06(e:MouseEvent){
            addChild(ButID06);
            TweenLite.to(MainChart, .5, {x: 0, y: 0, alpha:1});
            removeChild(BackToMain);
            TweenLite.to(Chart06, .5, {alpha:0});
            removeChild(Chart06);

    Nevermind it had to do with the tweening. The chart was added but I had to set the alpha back to 1. I hope.

  • Dynamically remove and add element into the JCOmboBox

    Hi all ,
    I have one JComboBox .
    and I have 3 sets of values in vector form -- Vector<String> v1 , Vector<String> v2 , Vector<String> v3 .
    Depending on certain condtion I have set the values in the JComboBox .
    Can any body tell how can I achieve this
    Thanks and regards
    Anshuman Srivastava

    Replace the model.
    [http://java.sun.com/docs/books/tutorial/uiswing/components/combobox.html]

  • [SOLVED] Postgresql and systemd - Unable to start or enable service

    I'm trying to run postgresql in a pure systemd machine.
    i've done a fresh install of postgresql using pacman as instructed in the wiki. However when i try to start the service i get the following:
    user@frodo:~$ sudo systemctl start postgresql.service
    Failed to issue method call: Unit postgresql.service failed to load: No such file or directory. See system logs and 'systemctl status postgresql.service' for details.
    user@frodo:~$ sudo systemctl status postgresql.service
    postgresql.service
    Loaded: error (Reason: No such file or directory)
    Active: inactive (dead)
    So it seems the package has no systemd service files included. Did anyone got around to make one of these?
    Last edited by lothar_m (2012-09-26 22:01:21)

    well, i've managed to fix the problem.
    it seems that the wiki is missing a couple of steps. so i manually done the following:
    i) create the data directory (acordingly  with the PGROOT variable set before in the config file)
    user@frodo:~$ sudo mkdir /var/lib/postgres/data
    ii) set /var/lib/postgres/data ownership to user 'postgres'
    iii) As user 'postgres' start the database.
    user@frodo:~$ sudo -i -u postgres
    [postgres@frodo ~]$ initdb -D '/var/lib/postgres/data'
    iv) start the service as root
    user@frodo:~$ sudo systemctl start postgresql.service
    that should be it.
    Issuing a systemctl status should return
    user@frodo:~$ sudo sudo systemctl status postgresql.service
    postgresql.service - PostgreSQL database server
    Loaded: loaded (/usr/lib/systemd/system/postgresql.service; enabled)
    Active: active (running) since Wed, 26 Sep 2012 22:50:09 +0100; 6s ago
    Process: 11187 ExecStart=/usr/bin/pg_ctl -s -D ${PGROOT}/data start -w -t 120 (code=exited, status=0/SUCCESS)
    Process: 11183 ExecStartPre=/usr/bin/postgresql-check-db-dir ${PGROOT}/data (code=exited, status=0/SUCCESS)
    Main PID: 11193 (postgres)
    CGroup: name=systemd:/system/postgresql.service
    ├ 11193 /usr/bin/postgres -D /var/lib/postgres/data
    ├ 11198 postgres: checkpointer process
    ├ 11199 postgres: writer process
    ├ 11200 postgres: wal writer process
    ├ 11201 postgres: autovacuum launcher process
    └ 11202 postgres: stats collector process
    Sep 26 22:50:08 frodo postgres[11187]: LOG: database system was shut down at 2012-09-26 22:49:13 WEST
    Sep 26 22:50:08 frodo postgres[11187]: LOG: database system is ready to accept connections
    Sep 26 22:50:08 frodo postgres[11187]: LOG: autovacuum launcher starte
    Last edited by lothar_m (2012-12-30 09:52:52)

  • Unable to enable service broker

    Dear all,
    I tried to create DBMail in one of our prod server, i did the following operation at start getting error. Kindly help me how to avoid this problem
    alter database msdb set enable_broker with no_wait
    Error: Database state can't be changed while other users are using the database 'msdb'
    Alter database statement failed
    Note: I just verified may be anyone using the database but i'm the only user working on that.
    DBA

    Try this:
    use master;
    go
    ALTER Database msdb set ENABLE_BROKER WITH ROLLBACK IMMEDIATE;
    go
    Satish Kartan http://www.sqlfood.com/

Maybe you are looking for