Move Windows Domain Controller 2012 to other Windows Domain Controller 2012 eniveroment

Dear All,
I Have Windows Domain Controller 2012 and but this server have a lot of issue so I need to ask you if I can move this server to other new server as is old server if yes can you please guide me how to do that ?
Regards, 

Hello Khaleel,
Your question doesnt specify what kind of errors are there on DC 2012. Try to resolve those errors.
Incase the server cannot be remediated, you can demote the server from being a DC.
you can demote the server using:
http://terrytlslau.tls1.cc/2012/03/domain-controller-demotion-on-windows.html
Please ensure, there is another DC in the domain and the FSMO roles , GC have been transferred to another server.
http://support.microsoft.com/kb/223346/en-us
http://www.archy.net/windows-server-2012-migrating-fsmo-roles/
I LOVE MS..... Thanks and Regards, Kshitiz (Posting is provided "AS IS" with no warranties, and confers no rights.)

Similar Messages

  • Cannot move windows to other Screen, e17

    Hi guys,
    I am using the ATI Catalyst drivers and I am unable to move windows from one screen to the other. The cursor is blurred when going to the other side, but it is still visible with the original screen with the window I am trying to move. I am using enlightenment and the newest catalyst drivers. Here is my xorg.conf file
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "aticonfig-Screen[0]-0" 0 0
    Screen "aticonfig-Screen[0]-1" RightOf "aticonfig-Screen[0]-0"
    EndSection
    Section "Module"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-1"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    BusID "PCI:5:0:0"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-1"
    Driver "fglrx"
    BusID "PCI:5:0:0"
    Screen 1
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    Monitor "aticonfig-Monitor[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1440x900_60"
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-1"
    Device "aticonfig-Device[0]-1"
    Monitor "aticonfig-Monitor[0]-1"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1024x768_75"
    EndSubSection
    EndSection

    I have the same problem. After Mountain Lion was installed, my longstanding display configuration (MacBook Air coupled with large Dell monitor) will no longer allow app windows to be moved from the Air screen to the large display when the large display is configured on top of the Air.  Only the side-by-side configuration works.  Mouse can move above the Air menu bar, but not any app windows.  Mirroring works as usual; this is the only problem. I've tried re-setting the display preferences, and I've also tried pairing with another (non-Apple) monitor.  Same problem.  Is this a known bug?  Is there a fix on the way?

  • Automator - How do I: Mouse Click, Move Windows, and more

    Hello,
    I am attempting to create my own Automator programs and for a while I had some that worked nicely. I have recently been tweaking my iMac so that it can "think" on its own (by automator of course) and do things for me. However, I've run across a block with Mavericks (I believe it's due to Mavericks).
    1. How can I get Automator to register a mouse click? "Watch me do" does not seem to want to work for me at all. I also would prefer if it would just be a registered mouse click, but not actually use the mouse (I know this is possible) so that if I'm doing something and it runs, it won't disturb my mouse and I can keep working.
    2. How can I register a keyboard stroke? Same as above
    3. How can I have automator move windows? I have two monitors and there are times when I may want it to move a window from one mintor to another
    The following is a list of all the things I'm attempting to accomplish at the moment (with other things when I think of them) with automator (either through applications, folder actions, or ical actions):
    1. Register a mouse click at a given area or on a given element in a safari page
    2. Register a keyboard stroke in a given program (be able to focus on a program and then do the keystroke)
    3. Move windows from one location to another
    4. Full-screen and Un-full-screen iTunes at certain times of day
    5. Download all purchased items on iTunes that aren't on the computer (sometimes iTunes doesn't download stuff if it was downloaded on my MacBook Pro first)
    6. Automatically voice read reminders (that I've set in Reminders) each day at a given time (I can use loop to repeat it to make sure I hear it all)
    I'll think of more of course, but the mouse click, keyboard stroke, and moving windows is the big thing I'm trying to figure out how to do. Can anyone help?
    Also, I am not a computer tech. I am tinkering with this because it's fun and helpful, but an answer of "just use applescript" or "just use java" will likely just give me a headache. I know that it's going to be one of those codes, but I'm hoping someone has a "base" code that can be copied and pasted that's just a standard click that I can adjust for where I need to click and what process I need to click on.
    If there is an Action Pack that includes a "Register Mouse Click" and/or "Register Keyboard Stroke", then that would work great, but the only action packs for automator I've seen that work with Mavericks is for photoshop.

    You're asking for a lot in one post.  It would be better to break your requests down a bit. 
    For example, to deal with mouse clicks, you can use the Automator Action Run Shell Script with this python script:
    import sys
    import time
    from Quartz.CoreGraphics import *
    def mouseEvent(type, posx, posy):
            theEvent = CGEventCreateMouseEvent(None, type, (posx,posy), kCGMouseButtonLeft)
            CGEventPost(kCGHIDEventTap, theEvent)
    def mousemove(posx,posy):
            mouseEvent(kCGEventMouseMoved, posx,posy);
    def mouseclick(posx,posy):
            mouseEvent(kCGEventLeftMouseDown, posx,posy);
            mouseEvent(kCGEventLeftMouseUp, posx,posy);
    ourEvent = CGEventCreate(None);
    # Save current mouse position
    currentpos=CGEventGetLocation(ourEvent);
    # Click the "Apple"
    mouseclick(25, 5);  
    # 1 second delay       
    time.sleep(1);        
    # Restore mouse position
    mousemove(int(currentpos.x),int(currentpos.y))
    It will look like this in Automator:
    To drag something (i.e. a window, a file icon) from position 40,60 to 60,300:
    import time
    from Quartz.CoreGraphics import *
    def mouseEvent(type, posx, posy):
               theEvent = CGEventCreateMouseEvent(None, type, (posx,posy), kCGMouseButtonLeft)
               CGEventPost(kCGHIDEventTap, theEvent)
    def mousemove(posx,posy):
               mouseEvent(kCGEventMouseMoved, posx,posy);
    def mouseclickdn(posx,posy):
               mouseEvent(kCGEventLeftMouseDown, posx,posy);
    def mouseclickup(posx,posy):
               mouseEvent(kCGEventLeftMouseUp, posx,posy);
    def mousedrag(posx,posy):
               mouseEvent(kCGEventLeftMouseDragged, posx,posy);
    ourEvent = CGEventCreate(None);
    # Save current mouse position
    currentpos=CGEventGetLocation(ourEvent);
    # move mouse to upper left of screen
    mouseclickdn(40, 60);
    # drag icon to new location
    mousedrag(60, 300);
    # release mouse
    mouseclickup(60, 300);
    # necessary delay
    time.sleep(1);
    # return mouse to start positon
    mouseclickdn(int(currentpos.x),int(currentpos.y));
    For keystokes in AppleScript (which can be added to Automator with the Run Applescript Action) see: http://dougscripts.com/itunes/itinfo/keycodes.php

  • TS1248 Trackpad - can't move windows around - curser works -tap works

    Can't move windows around w/trackpad.  

    Try using 3 fingers on the title bar. Can you screenshot your trackpad settings in system prefrences.
    System Prefrences > Trackpad

  • Hide the title bar of a movie window like QuickTime X

    Love the feature of QuickTime X of not showing the title bar/the control bar of a movie window (still waiting for Pro version, though. Is it coming out at all?)
    I'm wondering if anyone has figured out a way/tweak to hide the title bar of a iTunes movie window like QuickTime X.
    Thanks.

    What child window are you referring to? Do you mean a browser window opened with web.show_document?
    If so, you can use javascript to hide browser toolbars and so on. Search the forum for some javascript examples where windows are opened with toolbar=no.

  • Analog-In code pauses when I move windows around. WIN98

    I was able to fix the digital in/out code with different threads which seemed to have the same problem. The problem I still have is with Analog In. I have attached a copy of the code. If someone wouldn't mind taking a peak at it to see why it freezes when I mess with the UI thread. (ie move windows.)
    Top Level VI is Ain.vi
    Thanks in advance!
    Roger
    Attachments:
    Ain.llb ‏2900 KB

    Not sure about this one. I get different behavior than you�re describing, but I�m running WinXP on fairly fast PC. When I first click on the title bar, I get a slight pause in the execution, but it then resumes and runs while moving the window around. I think this means there�s nothing explicitly blocking due to running in the UI thread.
    One thing you might want to do is try to cut down on your use of Local and Global variables. You�ve got some pretty large and complex data structures in the Globals. Reading a Global or Local variable causes a copy of the data of the variable to be generated. This might be causing some performance problems, but I still don�t think that it should be stopping the execution. You might consider using LabVIEW 2 style Globals, sometimes called Functional Globals. The follow steps briefly describe how to make one.
    A while loop that executes once, an uninitialized shift register, a case structure, two controls and an indicator.
    Inside the loop create a case structure that has two states (read, write), create a control that will determine the state of the case structure and wire it to the input.
    On the while loop create a shift register.
    Outside the while loop place an indicator of the data type that you need the global to be. Wire the output of the shift register to your indicator.
    Place a control of the same data type as your indicator in the 'write' state of your case statement, wire this to the RHS shift register.
    Change to the 'read' case and wire the LHS of the shift register through the case structure to the output tunnel.
    You will now have a VI that performs a global function, set-up the connector pane and try using it as a sub-vi within you application.
    One thing to consider here. In your original post, you said that you used a count down timer to show that when drug and then release the window, that time/code did not continue. Are you still sure the diagram is not executing? Could it be that the front panel is not updating but the code is still running? Just a thought.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • Movie window takes over iTunes window

    Movies are no longer playing in a separate window -- movies take over the iTunes window, and I no longer have View options for changing the movie window size (command-1, command-2, command-3)
    Have iTunes 10.4 -- not sure if the problem started after last update or not. Using OS 10.6.8 - have not installed Lion yet, although the app is sitting in my dock.
    The option "Use Full Windows for iTunes Store" in View menu is deselected.
    I miss my movie window -- anybody know how to fix this? I hope this isn't a "feature".

    Ok duh, found the View menu option for selecting video playback in separate window, but still can't find the keyboard controls for changing the window size. Are they gone?

  • MB Air 13", cannot move windows to secondary monitor

    MB Air 13", cannot move windows to secondary monitor. The pointer moves to the secondary monitor, but when I grab a window and move it, it stops at the screen border

    Comment from Berntfromhasselby:
    Thanks for the good advice, but it was too advanced for me; I do not know how to go to setup or startup. Then I thought I can search for it in "help", but I did not find anything about setup there. I only found something about safe start, where I had to switch off the computer and then press "shift" immediately after a sound during start. I tried that, but nothing special happened. So I thought I had to give up, and remembered once I asked a friend, who is computer specialist, why the help often is of no help. He said that it is obviously very difficult to help people by the help function.
    Then I set the computer to sleep. For some reason I started it again, and NOW it was quick! It was repaired!?! So the next question is:
    Do MacBook Airs also need to be switched off sometimes, so they do not become slow (when only using sleep)? Are they somewhat  similar to PCs which can become slow with time due to accumulation of some trash (and are difficult to make quick)?
    Then today I liked to listen to Mozart's beautiful 20th piano concerto on You tube, but now it had no sound?! I tried help again and found Sound, but the were no  loudspeakers available and everything there was grey, so I could not change anything..... Do I have to go to some service? I took my other MacBook Air (11") and listened to Mozart and noticed that I need to have two of the best and most expensive computers in the world to be sure to have one working....
    Then I remembered the most important PC-rule I learnt from my daughter's boyfriend: if you have some problem, restart! I did so and the sound was there again, probably it disappeared during the safe start procedure. "If anything can go wrong, it will." Ironically, I have been working as professor at a technical university, but in fiber optics, not with computers...
    I any case, it is good now, so the problem is solved. Thanks again!

  • How do move windows upwards offscreen?

    I am using CS5 on XP, on a netbook. Certain windows, in this case the Save for Web Use window are too big for my small screen. I can't see the bottom of the window, but cannot reduce the window size sufficiently, or drag the window upwards, in order to do so. I know the windows keyboard controls (ALT+SPACE+M+cursor) to move windows offscreen, but these don't seem to work with the PS windows. Can anyone help?
    Thanks
    jh

    I have an old nano purchased in 2006. It indicated new models on the page.
    Any other suggestions?

  • Shortcut to move window to another desktop

    I have a couple desktops setup on my OS X.
    What is the shortcut to move a window to another desktop? I know I can drag it using the mouse but I have magicmousophobia and prefer to use the keyboard.

    Hi User_014,
    If you are looking for alternate ways to move windows across multiple spaces in Mavericks, you may find the following article helpful:
    Move a window from one space to another
    Do one of the following:
    Drag the window to the edge of your screen and pause; after a moment, the window is switched to the next space.
    Move the pointer over the window, then hold down the mouse button while pressing the Control key and an arrow key.
    From the space that has the window you want to move, zoom to Mission Control. Then drag the window itself (not the thumbnail image) up to the space you want to use.
    OS X Mavericks: Work in multiple spaces
    http://support.apple.com/kb/PH14155
    Regards,
    - Brenden

  • How to  move items from one JList to other

    Can u pls help me out to implement this(I m using Netbeans 5.5):
    I want to move items from one JList to other thru a ADD button placed between JLists, I am able to add element on Right side JList but as soon as compiler encounter removeElementAt() it throws Array Index Out of Bound Exception
    and if I use
    removeElement() it removes all items from left side JList and returns value false.
    Pls have a look at this code:
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
    Object selItem = jList1.getSelectedValue();
    int selIndex = jList1.getSelectedIndex();
    DefaultListModel model = new DefaultListModel();
    jList2.setModel(model);
    model.addElement(selItem);
    DefaultListModel modelr = new DefaultListModel();
    jList1.setModel(modelr);
    flag = modelr.removeElement(selItem);
    //modelr.removeElementAt(selIndex);
    System.out.println(flag);
    }

    hi Rodney_McKay,
    Thanks for valuable time but my problem is as it is, pls have a look what I have done and what more can b done in this direction.
    Here is the code:
    import javax.swing.DefaultListModel;
    import javax.swing.JList;
    public class twoList extends javax.swing.JFrame {
    /** Creates new form twoList */
    public twoList() {
    initComponents();
    //The code shown below is automatically generated and we can�t edit this code
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">
    private void initComponents() {
    jScrollPane1 = new javax.swing.JScrollPane();
    jList1 = new javax.swing.JList();
    jButton1 = new javax.swing.JButton();
    jScrollPane2 = new javax.swing.JScrollPane();
    jList2 = new javax.swing.JList();
    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
    jList1.setModel(new javax.swing.AbstractListModel() {
    String[] strings = { "Item 1", "Item 2", "Item 3", "Item 4", "Item 5" };
    public int getSize() { return strings.length; }
    public Object getElementAt(int i) { return strings[i]; }
    jList1.addListSelectionListener(new javax.swing.event.ListSelectionListener() {
    public void valueChanged(javax.swing.event.ListSelectionEvent evt) {
    jList1ValueChanged(evt);
    jScrollPane1.setViewportView(jList1);
    jButton1.setText("ADD>>");
    jButton1.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(java.awt.event.ActionEvent evt) {
    jButton1ActionPerformed(evt);
    jScrollPane2.setViewportView(jList2);
    javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
    getContentPane().setLayout(layout);
    layout.setHorizontalGroup(
    layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addGroup(layout.createSequentialGroup()
    .addGap(31, 31, 31)
    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 44, javax.swing.GroupLayout.PREFERRED_SIZE)
    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
    .addComponent(jButton1)
    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
    .addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, 63, javax.swing.GroupLayout.PREFERRED_SIZE)
    .addContainerGap(78, Short.MAX_VALUE))
    layout.linkSize(javax.swing.SwingConstants.HORIZONTAL, new java.awt.Component[] {jScrollPane1, jScrollPane2});
    layout.setVerticalGroup(
    layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addGroup(layout.createSequentialGroup()
    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addGroup(layout.createSequentialGroup()
    .addGap(62, 62, 62)
    .addComponent(jButton1))
    .addGroup(layout.createSequentialGroup()
    .addContainerGap()
    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))))
    .addContainerGap(159, Short.MAX_VALUE))
    layout.linkSize(javax.swing.SwingConstants.VERTICAL, new java.awt.Component[] {jScrollPane1, jScrollPane2});
    pack();
    }// </editor-fold>
    //automatic code ends here
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
            jList1 = new JList(new DefaultListModel());
            jList2 = new JList(new DefaultListModel());
             Object selItem = jList1.getSelectedValue();
             System.out.println(selItem);
            ((DefaultListModel) jList1.getModel()).removeElement(selItem);
            ((DefaultListModel) jList2.getModel()).addElement(selItem);
    //Now trying with this code it is neither adding or removing and the value �null� is coming in �selItem� .It may be bcoz JList and Jlist are already instantiated in automatic code. So, I tried this:
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
             Object selItem = jList1.getSelectedValue();
             System.out.println(selItem);
            ((DefaultListModel) jList1.getModel()).removeElement(selItem);
            ((DefaultListModel) jList2.getModel()).addElement(selItem);
    //Now with this as soon as I click on �jButton1�, it is throwing this error:
    Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: twoList$1 cannot be cast to javax.swing.DefaultListModel
            at twoList.jButton1ActionPerformed(twoList.java:105)
            at twoList.access$100(twoList.java:13)
            at twoList$3.actionPerformed(twoList.java:50)
            at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
            at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
            at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
            at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
            at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
            at java.awt.Component.processMouseEvent(Component.java:6038)
            at javax.swing.JComponent.processMouseEvent(JComponent.java:3260)
            at java.awt.Component.processEvent(Component.java:5803)
            at java.awt.Container.processEvent(Container.java:2058)
            at java.awt.Component.dispatchEventImpl(Component.java:4410)
            at java.awt.Container.dispatchEventImpl(Container.java:2116)
            at java.awt.Component.dispatchEvent(Component.java:4240)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
            at java.awt.Container.dispatchEventImpl(Container.java:2102)
            at java.awt.Window.dispatchEventImpl(Window.java:2429)
            at java.awt.Component.dispatchEvent(Component.java:4240)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
            at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)

  • ITunes Error: Cannot play bought iTunes movie from one day to the other "The selected movie won't play on your display."

    Hi,
    just a few weeks ago I watched on my new iMac 5k Retina a long-ago-downloaded movie (iTunes content, HD, Billy Joel. Live at Shea Stadium). I had no issues watching it on the new wonderful display just a few weeks ago!
    Today I wanted to resume the video and got the error "The selected movie won’t play on your display. This movie can be played only on displays that support HDCP (High-bandwidth Digital Content Protection).".
    Actually the movie plays for a few seconds and then the movie window gets black and the error message appears. Restarting iTunes does not help. Restarting the Mac also not.
    How can this be fixed?
    Additionally I get since I moved from my old iMac to the new one the iTunes error "Do you want the application “iTunes.app” to accept incoming network connections?" every time I start iTunes.
    BR
    Alex
    iMac 5K Retina (ser no DGKP813CFY14)
    AMD Radeon R9 M295X 4096 MB, 4 GHz Intel Core i7,
    OS X 10.10.2 (14C1514)
    I am running FCPX, iTunes, Aperture...

    I found the issue, a new app that I installed the other day...just renamed it and now I can watch the bought content again...
    BR
    a

  • What's the best way to move files from my 2012 iMac to my 2014 MBP?

    What’s a good way to move files from my 2012 iMac to my MBP?
    I prefer to do graphic work on my 21-inch iMac (2012 version). But when I travel I need to copy files to my 2014 MBP. I learned that my 2012 iMac is too old for use of AirDrop, so I’m copying and moving files with a flash drive. That seems slow and clumsy. Is there a better way?

    Target Disk Mode would provide a direct connection between the two Macs:
    http://support.apple.com/en-us/HT1661
    Nothing simpler than that is available.
    Ciao.

  • Can I move podcast from my account to other's?

    can I move podcast from my account to other's?
    i.e. may it have 2 owners?

    You're talking about an episode you've downloaded in someone else's podcast, and moving it to another user account on your Mac? You could simply subscribe to the podcast in the other account and download it again, but if you want to save the download time just drag the episode(s) to the Desktop, then place them in the Users/shared folder, then open the other user account and drag them from there to iTunes.
    If this isn't what you are trying to do please specify exactly what it is.

  • How to move items from one list to other

    hi all,
    in jsp page i have twolist boxes. i want to move item from one list to other list on click of add or move button. can u plz suggest me an answer for the above. thank u
    Regards sangeet

    This link should help. Remove from one list and add to the other using Javascript.
    http://www.mredkj.com/tutorials/tutorial006.html

  • How to move table from one tablespace to other tablespace?

    how to move table from one tablespace to other tablespace?

    887274 wrote:
    how to move table from one tablespace to other tablespace?
    alter table <table_name> move  tablespace <new_tablespace_name>;
    Rebuild the indexes; alter index <index_name> rebuild <new_tablespace_name> online;Example;:
    SQL> create table ttt( ID NUMBER PRimary key);
    Table created.
    SQL> insert into ttt values (1);
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select index_name, status  from dba_indexes where table_name='TTT';
    INDEX_NAME                 STATUS
    SYS_C0010863                 VALID
    SQL> alter table ttt move tablespace users;
    Table altered.
    SQL> select index_name, status  from dba_indexes where table_name='TTT';
    INDEX_NAME                 STATUS
    SYS_C0010863                 UNUSABLE
    SQL> alter index SYS_C0010863 rebuild tablespace users online;
    Index altered.
    SQL> select index_name, status  from dba_indexes where table_name='TTT';
    INDEX_NAME                 STATUS
    SYS_C0010863                 VALID
    SQL>

Maybe you are looking for

  • Resource Gantt Chart - Error : Resourse with same ID "%1" already exists

    Hi, I have a requirement to have multiple periods per resource. I have implemented the example in http://apex.oracle.com/pls/apex/f?p=36648:60. It seems only to cater for a single period. The COLUMN_NAME ID in my query is not unique. The following er

  • Previous weeks data

    Hi all, I have a requirement where I need to show the Unbilled amount of this week as well as last 20 weeks based on region. Let say I am on fiscal week 20. Now if create a report based on region and Unbilled amount I will get $ 20 for europe. Now if

  • EP 6.0 SP2 + external kerberos authentication

    We recently installed EP 6.0 SP2 Patch 4 HF 6 on an Aix 5.2 unix platform. We would like to create our own authentication scheme that uses a login module written in Java that does kerberos authentication externally. From reading the Portal Security G

  • Maximum number of inputs in "write data"

    Which is the maximum number of input channels in "write data"? It seems that it is only 16 inputs. I have more than 16 parameters in my application. What do you suggest? I would like to have all the data gathered in one file. Solved! Go to Solution.

  • Porque en Ecuador no ahi tiendas de apple que vendan todos los productos en especial el iphone 5s y 5c ????

    aki en ecuador ahi tiendas mac pero en ninguna vende todos los articulos necesario asi cuando hacen lanzamiento mundial del iphone 5s y 5c aki igual ahi muchas personas que los comprarian