Removing data files issue? Need your guidance

Hello All,
I have a critical situation out here....
I have got one tablespace (say TableSpaceOne). This tablespace have 20 Datafiles.The total size of the tablespace is 32GB.
There are 7 different tables using this tablespace.
One of thses 7 tables is occupying maximum space (29GB)
I want to remove this table and also I want to release the space i.e. other six tables are occupying only 1 to 3GB.
What strategy should I follow?
Please guide
Thanks in advance
HImanshu

Hi,
Thanks for the questionare.
I need to drop the BIG table and recreate it in some other tablespace. But for the present tablespace, there are multiple datafiles which are belonging to various object.
What I thought as solution is:
1. Export other object which I want to keep.
2. Drop the tablespace including contents and datafiles.
3. Create the tablespace with appropriate datafile
4. Import the objects in to the tablespace.
5. Create another tablespace
6. Create the big table into the newly created tablespace
I am ready to loss the data from the big table.
Is my approach correct?
I hope I have answered your question.
Thanks
Himanshu

Similar Messages

  • [svn] 1543: Bug: BLZ-152-lcds custom Date serialization issue - need to add java.io. Externalizable as the first type tested in AMF writeObject() functions

    Revision: 1543
    Author: [email protected]
    Date: 2008-05-02 15:32:59 -0700 (Fri, 02 May 2008)
    Log Message:
    Bug: BLZ-152-lcds custom Date serialization issue - need to add java.io.Externalizable as the first type tested in AMF writeObject() functions
    QA: Yes - please check that the fix is working with AMF3 and AMFX and you can turn on/off the fix with the config option.
    Doc: No
    Checkintests: Pass
    Details: The problem in this case was that MyDate.as was serialized to MyDate.java on the server but on the way back, MyDate.java was serialized back to Date.as. As the bug suggests, added an Externalizable check in AMF writeObject functions. However, I didn't do this for AMF0Output as AMF0 does not support Externalizable. To be on the safe side, I also added legacy-externalizable option which is false by default but when it's true, it restores the current behavior.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-152
    Modified Paths:
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/endpoints/AbstractEndpoint.ja va
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/io/SerializationContext.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/io/amf/Amf3Output.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/io/amfx/AmfxOutput.java
    blazeds/branches/3.0.x/resources/config/services-config.xml

  • Digital Signature Data File Issue

    Hello all,
    I am something of a network administrator / supervisor (by position not education so some of the technical aspects of my shop still alude me). Right now I am having an issue with digitally signing PDF files; previously when I signed the files the size would remain approximately the same (moving perhaps from 200 KB to 300 KB, however when I sign files now the size jumps to almost 7000 KB. Previously I had received a message when signing that indicated I could change a setting to add an extra layer of protection and my hypothesis is that this may be the cause, but I am not 100% sure of that.
    Has anyone experienced this problem before, or have any possible solutions? My guess is that there is an option where Adobe controls how secure the signature I create has to be and it defaulted to the more secure, much larger file size after I received the initial notification.
    Thank you for your guidance and wisdom.

    Hello all,
    I am something of a network administrator / supervisor (by position not education so some of the technical aspects of my shop still alude me). Right now I am having an issue with digitally signing PDF files; previously when I signed the files the size would remain approximately the same (moving perhaps from 200 KB to 300 KB, however when I sign files now the size jumps to almost 7000 KB. Previously I had received a message when signing that indicated I could change a setting to add an extra layer of protection and my hypothesis is that this may be the cause, but I am not 100% sure of that.
    Has anyone experienced this problem before, or have any possible solutions? My guess is that there is an option where Adobe controls how secure the signature I create has to be and it defaulted to the more secure, much larger file size after I received the initial notification.
    Thank you for your guidance and wisdom.

  • How to remove data file from System tablespace

    Hi All,
    I have wrongly added data file in SYSTEM tablespace, now I want remove it. I have tried to set datafile offline but it is giving me the error system tableapce can not set offline. so please help me. I am working Oracle 10g .
    thanks in advance
    sv

    In 10gR2, you can drop a datafile from tablespace, as long it's empty (and of course not the last one):
    ALTER TABLESPACE tbs_03 DROP DATAFILE 'tbs_f04.dbf';
    Otherwise, there's no direct way to get rid of the file. You can just shrink it and move (i.e. "rename") it another location. For a non-system tablespace, move of all segments to another tablespace (and later renaming it) would be an option, but this of course won't work with system tablespace.

  • Removing data files - simple question

    Suppose tablespace dropped without INCLUDING. is there anything wrong to remove ifile from OS?
    Thanks.

    No. You can remove the data files manually from the server if you did not include "INCLUDING CONTETNS AND DATAFILES" in the DROP TABLESPACE command.

  • Java and Batch File Issue - need urgent help

    I have a java program which calls a batch file. This batch file calls another java program. I want an option so that I can close this java program from main program.
    If i try process.destroy then it will call batch file and not java program.
    I can't go away with batch file.
    I will appreciate if someone can help me.

    khannap wrote:
    Hi, Thanks for the help but this doesn't seem solving my problem completely. I will appreciate if you can help more.
    I will explain you the scenario -
    1. There is java program provided as an external program to me.Only changes things slightly.
    2. This java program is called using batch file. When batch file is started this java program starts and listens on a socket for incoming data.I would want to wrap the launch of this java program in another JVM so we can use process.destroy().
    3. I am writing a program to check performance of the above java program. I want to call this java program from my program in a loop having some varying config data. When I run the loop first time I create a batch file at run time which executes the batch file provided by vendor. This batch file starts the socket. Once my message list is over then my loop goes to executing the batch file again with different config parameters. But this time I run into issue because my previous java program is not killed after message sending was over.Would it be acceptable to mung the 3rd party batch file to insert a wrapper JVM?
    Even if i use threads I don't think I can get rid of batch file.I did not suggest getting rid of batch files.
    So, I need to find a way so that when any iteration of loop is over then this socket program is killed. These 3rd party java programs - do they not have a "terminate" command you can put at the end of your message list?
    Even if i closed the socket from my client program that doesn't help because server is still listening and waiting for new client.
    I need to kill server which was started by batch file.On Linux it would be fairly simple to modify your batch file to determine what the process id is and send the process a signal to terminate it.
    Not sure what you can do on Windows.

  • Security.properties file issue - Need help

    Hi Friend,
    I am trying to setup SUN IDM connection pool and getting this error. Can some one help me how to fix this issue.
    java.io.FileNotFoundException: C:\Sun\AppServer\config\security.properties (The
    system cannot find the file specified)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(FileInputStream.java:106)
    at com.sun.enterprise.util.Utility.getPropertiesFromFile(Utility.java:42
    at com.sun.enterprise.iiop.POAEJBORB.<clinit>(POAEJBORB.java:78)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:242)
    at org.omg.CORBA.ORB.create_impl(ORB.java:295)
    at org.omg.CORBA.ORB.init(ORB.java:336)
    at com.sun.enterprise.util.ORBManager.createORB(ORBManager.java:138)
    at com.sun.enterprise.util.ORBManager.init(ORBManager.java:65)
    at com.sun.enterprise.naming.SerialInitContextFactory.<init>(SerialInitC
    ontextFactory.java:31)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at java.lang.Class.newInstance0(Class.java:350)
    at java.lang.Class.newInstance(Class.java:303)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:6
    54)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247
    at javax.naming.InitialContext.init(InitialContext.java:223)
    at javax.naming.InitialContext.<init>(InitialContext.java:197)
    at com.waveset.util.JdbcUtil.getDataSourceObject(JdbcUtil.java:571)
    at com.waveset.repository.RelationalDataStore.setupJdbc(RelationalDataSt
    ore.java:3834)
    at com.waveset.repository.RelationalDataStore.init(RelationalDataStore.j
    ava:3779)
    at com.waveset.install.RepoMan.check(RepoMan.java:1194)
    at com.waveset.install.RepoMan.setRepo(RepoMan.java:1082)
    at com.waveset.install.RepoMan.main(RepoMan.java:1314)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.waveset.util.CommandProcess.invokeMain(CommandProcess.java:212)
    at com.waveset.util.CommandProcess.launch(CommandProcess.java:162)

    Hi rhayn, I think you're getting confused about what "file sharing" really is used for. You need to say to yourself "do I want someone on another machine to access these files?" If yes, you need file sharing; if no, forget about it.
    So, the second user, are they on another machine or are they using the same mac as you?
    Just as in windows, when you share a folder over the network, you can set different permissions on the "share" compared to the permissions on the files and folders themselves. In all cases, the most restrictive permissions apply. Therefore if you give read/write to the shared folder (the "share"), but a folder is read only (to the second user), they will be able to view the list of files in that folder, but not open them (equivalent to the windows permission called "list folder contents"). If the folder was read/write, the second user can create files and edit them. If the folder is read/write and existing files are read only, they can open them but not save changes. Where OS X differs from windows is the mechanism for setting permissions; OS X uses the unix/posix permission system. In addition, if you are the owner of the folder or file, you can always do anything with the folder or file.
    All of the above paragraph is only information you need to use IF the other user is connecting to your mac from ANOTHER computer across a network.

  • Weird Hardware Issues - Need Your Advice

    Hello.
    I'm having this weird issue lately, and I was wondering if anyone can help.
    First, I have a Pentium 4 3.2Ghz HT Presscot CPU, 512 MB RAM and an nVidia GeForce FX5200.
    The problem:
    I often leave my machine on overnight. When I wake up and get to the machine, I can see that X is using 50% CPU. When I move the mouse, I can see that it reacts very slowly to mouse-over effects. Then when I click a window, or try to access the keyboard, X pretty much freezes, and it loses touch with both the mouse and the keyboard. The only resort is to press the Reset button.
    When I do so, my machine does not really reset - It gets stuck even before the BIOS screen comes up.
    What I do then is I need to shutdown the computer, wait for a few minutes and turn it back on. When I turn it back on and it actually start working, I get a message from my BIOS, stating that some "overclocking failed". It then asks me to either load the default BIOS settings or to reconfigure the BIOS myself. When I choose the load the default settings, it carries on to GRUB and it's all good.
    The cause (what I think, that is):
    I think the cause for this is the CPU. My CPU runs at very high temperatures, for some reason. Now my computer is idle, and according to lm_sensors it runs at 68C now. When I came to the machine this morning, lm_sensors showed it was running at 81C.
    The thing is I am pretty clueless as far as hardware is concerned. Can that be the reason for it all? What causes X to suddenly go berzerk with its CPU usage?
    Any ideas and suggestions would be welcome, as I am pretty clueless.
    Thanks a lot for reading

    run "ps aux" command will tell you everything that is running
    also
    open the case make sure all fans are spinning
    clean all dust & pet hair if you have a pet
    i dont have a pet but i do clean the inside of my box like once a year or more
    remove fan housing from heatsink on processor clean all dust between fins
    if you dont have one or do consider putting another case fan in there
    at one end machine blowing out the other end blowing in to circulate frsh air into box
    does your pc sit inside a cabinet? maybe a wood desk cabinet, wood absorbs heat
    while the inside of your pc circultes air if inside a cabinet with the same air trapped inside
    the pc is only circulating the same air this is only one possibility for your issues but its the 1st place id look
    for heat issues
    & from what your telling me
    81 degree Celsius = 177.8 degree Fahrenheit
    i think 212 degrees is boiling , you could damn near cook your meals in a machine that hot
    i leave my pc on almost always i have not turned it off in some time & im running
    30 degree Celsius = 86 degree Fahrenheit

  • ALE Data Transfer Issue--Needs Immediate Attention

    Hello Gurus
    I am hoping somebody can guide me here--
    We are on E-Rec 603 with seperated standlone e-rec system.
    we have set up ALE Data transfer for object type P from ECC QA to E-Rec QA system but unfortunately the I-Doc is always gettign posted with status 52 ( application document not fully posted).
    The infotypes 0000,0001,0002,0006 and 0105 are being transferred. The report HRALXYSNC refuses to recognise the 'P' object transferred and says=='data not found for search condition'.
    We debugged HRALXSYNC and found that IT 0003 needs to be included but we tried transferring that too--however, the ALE still fails to transfer the data.
    Not sure why the data transfer is not happening--what is the best alternative?
    Would really reallly appreciate some light....!!
    Thanks
    Tania

    Hello Tania,
    first of all we should have a look on your system landscape. If you have e-recruiting on an standalone server, the server installation should only include basis components (BASIS, ABA, PI, ...) and the e-recruiting component. Running e-recruiting standalone on a server with a complete ERP installation is not officially supported up to EhP3.
    Could you please check that you either have the first landscape situation or if you have installed a full ERP implemented note 1147882.
    Before running some ALE at all ensure that the system works well and w/o any SLG1 entries for external candidates and internal candidates created using report RCF_CREATE_USER.
    Then make sure the BAdI implemtations are set accorting to note 997181:
    BAdI                    Implementation
    HRALE00SPLIT_INBOUND    HR_INB_PROCESS_IDOC -> activated
    HRALE00INBOUND_IDOC     HRRCF00_DELETE_SPREL -> activated
    HRSYNC_P                CONV_HR_DATA_TO_EREC -> deactivated (if existing)
    HRALE00INBOUND_IDOC     HRRCF00_INBD_NEWMOD -> deactivated (if existing)
    For the distribution model define a filter restriction the infotypes / subtypes destributed for P to:
    Infotype 0000
    Infotype 0001
    Infotype 0002
    Infotype 0006 Subtype 0001
    Infotype 0105 Subtyoes 0001, 0010
    If you want to include the OM in E-rec (use positions in requisition maintenance, etc.) add a filter for Infotypes 1000 and 1001 for objects P, S, O and C (you can use the subtype to restrict relations and avoid unnecessary relations in the IDoc. P->CP relation is only necessary for EhP 4 and higher.
    Make sure you use the best practise step by step descripion for the intial data transfere for EhP 3 documented in note 997181 document Two_Instance_E-REC_Integr_ERP_EN.pdf page 4, add the processing for type C after each object type S step.
    Hope that helps.
    Kind regards
    Roman

  • The XML data file - I need to add an XSL reference line

    Help Appreciated !!<br />Using Lifecycle 8, with out Reader Extensions, the email submit button generates an XML output file such as the following;<br /><br /><?xml version="1.0" encoding="UTF-8"?><br /><br /> <FormName><br />   <Position>thwrth</Position><br />   <Division>arthar</Division><br />   <DepartmentUnit>rthqrth</DepartmentUnit><br /></FormName><br /><br />How can I get the following reference included as line 2 of the output xml file ?<br /><br /><?xml-stylesheet type="text/xsl" href="SR.xsl"?><br /><br />Thanks a lot

    If I understand correctly, Sonic Kaboom.swf needs to be edited in a separate Flash authoring program and then reinserted into your HTML document. 
    As Murray said, Flash is dead.  Nobody uses it anymore.   We use HTML5, CSS3 and JavaScript animations which have universal support from Smartphones, Tablets and other web devices that can't support Flash.   Look at Edge Animate.
    HTML animation | Download free Adobe Edge Animate CC trial
    Nancy O.

  • Tseng - Font Issues need your help

    Tseng, I am calling upon your knowledge of font issues. I read some previous threads regarding font issues relating to a validation error of the follow:
    'FOND' Font Association usability
    I am attempting to install the Frutiger font which is, according to OS X ver. 10.5.6, a Post Script Type 1 Outline font.
    I understand that Leopard has some issues dealing with bitmap-only type fonts, however if this is recognized as a Post Script Type 1 Outline font then where lies the issue?
    Also, even stranger, is that despite the errors from validating the font in fontbook, the font works on almost every computer in my office except one... how strange is that. PS. I also did all software updates just to be sure.
    If you have any suggestions or information I would be ever so thankful!

    Yes they are all present.
    I compared my computer (where the font works) to the computer that the font doesn't work and the files are the exact same.
    It is an odd situation.
    Even on my computer where the fonts work, if I go into Font Book and validate the font it still shows errors, but it works.

  • Lost data files, issue with re-capturing

    I deleted a project yesterday and mailed the finals to the client. Apparently there was still something that needed to be fixed.
    I've tried using a data restore program but it didnt do anything, so I opened up the last autosave.
    I am trying to re-capture the clips but everytime i get to it, a box comes up saying the tape has reached the end even though i have even cued it up properly.
    Any suggestions?

    re did it

  • Need your Guidance

    Hi all
    I don't know where to post my question, I posted the same question in SQL Developer but didn't get any answer so I'm going to post it here and I hope that I will get your advice regarding this.
    I'm wondering that if someone suggest me about my future career path. I live in Canada, Saskatchewan and have 5 years of background as an Oracle Developer that includes my new job as PL/SQL Developer or you can say this ETL Developer. My job responsibilities over there are:
    --Data already loaded in one schema in a raw format and I have to use mapping document created by Business Analyst to load data into target table by using certain condition. I use SQL Developer to create Package, Procedure, function, collection and other stuff.
    After loading data, I have to perform some validation check on data and if some data is invalid then invalid data inserted into error table.
    My question is that I want to do something more to groom myself and I did some research and because my field is somehow related with ETL or PLSQL so I have a plan to do some certification or training in data ware housing .
    In addition, some people are suggesting me that I can do some stuff related to report tools like Cognos or some people suggesting me that go for Data ware housing field . At this moment I'm too confused that What to do and if you people guide me that what is good for me then I really appreciate it. Thanks
    Regards
    Shumail

    976593 wrote:
    . . . E t c . . .
    . . . At this moment I'm too confused that What to do and if you people guide me that what is good for me then I really appreciate it. Thanks
    First try to be the best at what you do now, and in the meantime research what you want to do.
    :p

  • SYSDATE Variable Issues - Need your help!

    Hello,
    I have reviewed as many of the threads related to date formats, variables and error codes that I could find and I'm still stuck. Your assistance is greatly appreciated. I created a StartTime variable and refresh it using 'select sysdate from dual'. It is an alphanumeric variable, Action = Historize and Default = '01-Oct-2009'. When I check the History Tab the Value =      2009-12-29 00:19:37.0. In the package, I declare the StartTime and LastUpdate variables, then refresh the StartTime variable, then execute the GL_JE_BATCHES interface, then set the LastUpdate variable. The value in the History tab shows this: 2009-12-29 00:19:37.0     .
    In my Interface, the filter looks like this: GL_JE_BATCHES.LAST_UPDATE_DATE>='#LastUpdate'. The LAST_UPDATE_DATE field is a DATE datatype. When I view the LAST_UPDATE_DATE field in the source table it appears like this -- 3/27/2001 2:28:40 AM. The default nls date format = 'DD-Mon-YY'.
    Trying to execute as it appears above, I am receiving the following error message: java.sql.SQLException: ORA-01861: literal does not match format string. I have tried all kinds of TO_DATE formatting and receive all different error messages.
    I must be missing something very, very basic because everyone else can apparently make this work. Again, many thanks in advance!

    Hi..I am not sure whether I got you correctly, but this is what I have done
    create a variable(date_var) as text and in refresh select to_char(sysdate,'mm/dd/yy') from dual and used the same in the interface with exp_date<TO_DATE('#date_var','mm/dd/yy') . It worked for me, hope it works

  • Need your guidance for format and mount the hard disk in linux

    Hi All,
    I presented 100GB in server (RHEL5.6) through SAN. Now I can able to see the hard disk,
    Disk /dev/sda: 107.3 GB, 107374182400 bytes
    255 heads, 63 sectors/track, 13054 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk /dev/sda doesn't contain a valid partition table
    Disk /dev/sdb: 107.3 GB, 107374182400 bytes
    255 heads, 63 sectors/track, 13054 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk /dev/sdb doesn't contain a valid partition table
    Disk /dev/sdc: 107.3 GB, 107374182400 bytes
    255 heads, 63 sectors/track, 13054 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk /dev/sdc doesn't contain a valid partition table
    Disk /dev/sdd: 107.3 GB, 107374182400 bytes
    255 heads, 63 sectors/track, 13054 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk /dev/sdd doesn't contain a valid partition table
    Disk /dev/sde: 107.3 GB, 107374182400 bytes
    255 heads, 63 sectors/track, 13054 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk /dev/sde doesn't contain a valid partition table
    Disk /dev/sdf: 107.3 GB, 107374182400 bytes
    255 heads, 63 sectors/track, 13054 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk /dev/sdf doesn't contain a valid partition table
    Disk /dev/sdg: 107.3 GB, 107374182400 bytes
    255 heads, 63 sectors/track, 13054 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk /dev/sdg doesn't contain a valid partition table
    Now how to configure the multipath and how to use this allocated space.
    Kindly guide me.
    Thanks,
    Muthu

    Linux DM multipath determines whether or not discovered devices are individual devices or whether they are separate paths to one and the same device. This is accomplished by querying the device serial number. To install and configure multipath, please see the DM Multipath Guide available for your OS version installed: https://linux.oracle.com/documentation/.
    If you need more help and examples, check the following thread: multipath -ll command doesn't give any output
    I'm afraid no one can answer your question how to partition and mount your storage space without you giving any information about its purpose.

Maybe you are looking for

  • Won't read data dvd

    Hello, I'm using MBP 13" mid 2009, processor 2.53 Ghz Intel Core 2 Duo, Mac OS X Lion 10.7 My MBP can play any movie dvd, but when I insert a dvd-r from my friend which have data inside, the MBP says that the dvd-r is blank and ask me what i want to

  • How to pupup the calendar value into text box ?

    Hi I want to use the calendar for my text field . The calendar will popup when I click a button /image. This image will appear next to text box . when click the calendar. The values should come to into text box. Please give me any idea how to write a

  • New C40 cisco codec

    Hi, I'm working for Industry Canada and we just received a new video conference system.  It is connected to a DSL line.  The video conferencing work perfect when we dial out.  But I have a issue when a external person try to dial me in, it can't conn

  • JTextPane and XMLParser and jdk .-) problems

    Hi there. I have a nice problem, which really gives me headaches. I have an XML editor (working as an applet or as an aplication, using a JTextPane). All worked ok untill jdk1.3 and parts even until jdk1.4. Now 2 big problems appeared. 1.Under jdk1.4

  • Opening Canon T2i raw files in CS5 Photoshop

    ACR 5.7 for CS4 opens raw files from my Canon T2i. CS5 Photoshop will not open my files. Did I really just pay $600 to take a step backward in camera compatibility? I have looked through the documentation and on the website and have now been on hold