Specify datafile name for each partition - possible?

Is it possible to specify datafile to be used for each partition of a large table (in 10g or 11g)?

movilogo wrote:
Thanks for replies.
My intention is that Oracle access only the relevant datafile on disk depending on what query I execute.
I wanted to separate each datafile so that no unnecessary disk access happens.
So, I understand that I can specify tablespace for partitions and data will be written in underlying datafiles.True,
As such am not sure why you think oracle would unnecessary do disk access for anything in which he is not interested it or is not required even if your partiton happened to be in same tablespace
Regards

Similar Messages

  • Error: binding operation "locate" must specify a name for its input message

    Hello everybody.
    I have a WSDL file created by .NET and I want to generate the corresponding Java classes.
    I am using JWSDP 1.5. I have created a config.xml as following:
    <?xml version="1.0"?>
    <configuration xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config"
      <wsdl location="http://blablabla.asmx?WSDL"   packageName="blabla"  />
    </configuration> I also add the following line after the <configuration xmlns
    xmlns:tns="tnsFromWsld">As value I add the value appeared at tag of xmlns:tns from WSDL file.
    I received in both cases the following exception:
    "error: binding operation "locate" must specify a name for its input message".
    Does anybody knows what is the problem?
    I really appreciate your help.

    Hi berobero,
    You can only have the device in either Workgroup mode or Active Directory mode, not both. Which are you trying to set it up as?
    Have questions and need answers?
    Search the database for answers to FAQ's, software/driver downloads, tutorials, news, features and more!
    LenovoEMC Support & Downloads
    LenovoEMC North America Support Contact Page

  • I want to amend the Itunes name for each IPOD we own. How is this done?

    I want to amend the Itunes name for each IPOD we own. How is this done?

    Do you mean the name of the iPod? For example "John's iPod touch"
    If you have iOS 5 or later, you can change the name from "Settings --> General --> About. Tap on "Name" and enter a new name.
    With iOS 4, connect the iPod to iTunes, and click the name for the iPod in iTunes in order to change it.

  • Specify author name for annotations when opening Adobe Reader

    Hi !
    I need to specify the author name (for annotations) programatically each time I open Adobe Reader from my application. Is that possible and if yes, how ?
    Here is how I open Adobe Reader in my application :
    try {
      Intent intent = new Intent();
      intent.setClassName("com.adobe.reader", "com.adobe.reader.AdobeReader");
      intent.setAction(Intent.ACTION_VIEW);
      intent.setDataAndType(Uri.fromFile(doc), "application/pdf");
      startActivity(intent);
    catch (ActivityNotFoundException activityNotFoundException) {
      activityNotFoundException.printStackTrace();
    If not possible, where does Adobe Reader stores its parameters ? Maybe I can change them before opening it ?
    Thanks in advance for your help !
    Zab

    The application I'm developping needs to be able to allow its users to open existing pdf files and annotate them with the username they've given when logging into the application. Unfortunately, I've not found any satisfying library to edit existing pdf files on Android nor in AIR for Android. I'm thus trying to call Adobe Reader from my application (this I can do) and set the author name for annotations...
    I've found that Adobe Reader stores the author name in /data/data/com.adobe.reader/shared_prefs/com.adobe.reader.preferences.xml
    Knowing that my application will run on rooted Android tabs, do you think it would be posssible to modify this file each time before launching Adobe Reader from my application (could be a dirty workaround but still a workaround) ?

  • How to specify file names for the generated code in wscompile

    Hi,
    We want to follow a certain file naming conventions for the artifacts generated by wscompile.
    How is it possible to set the name for the service interface file, service implementation file etc....
    This is possible in AXIS ant task Wsdl2Java. How do we do it for wscompile.
    thanx

    Thanks Chris and c. Under Description I'm presented with three Names for the profile: ASCII, UniCode and Mac Script. ASCII and Mac Script are the same name for the profile, with nothing being in the UniCode Name box. Which do I change -- both?
    Am I going to screw things up in Photoshop if I change these names to something I can comprehend? Looks like I may just have to make a sticky-note list of the cryptic profile names with my own descriptive name as a reference. Thanks.

  • How to specify height dynamically for each showDetailItem

    Hi,
    I'm using JDeveloper 11.1.1.6 version.
    I have the following requirement:
    I have a create page with one <af:region>.
    The <af:region> displays a page with <af:PanelTabbed> component having 4 <af:showdetailItem> components.
    For each tab I would like to specify the height dynamically based on the content of the tab.
    Any pointers would be helpful.
    Thanks
    Ravi

    Hi,
    actually its the parent component (panelTab) that determines the size
    To quote from http://docs.oracle.com/cd/E23943_01/apirefs.1111/e12419/tagdoc/af_showDetailItem.html
    Geometry Management
    This component should never have any width or height specified in its inlineStyle because it will always gets its dimensions from its ancestor component.
    Frank

  • Specifying file name for ServletOutputStream ?

    Hello,
    How can I specify a file name for a ServletOutputStream ? The code below always defaults to file name "MinimalBinaryStream" ?
    Thanks for your help !!!
    James
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class MinimalBinaryStream extends HttpServlet
      public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
        doGet(request, response);
      public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        response.setContentType("application/octet-stream");
        response.setContentLength(3);
        ServletOutputStream bout = response.getOutputStream();
        bout.write(0x31);
        bout.write(0x32);
        bout.write(0x33);
        bout.flush();
        bout.close();
    }

    Thanks nantucket,
    I have solved the problem by editing my "web.xml" file, for example:
    <web-app>
        <servlet-mapping>
            <servlet-name>MinimalBinaryStream</servlet-name>
            <url-pattern>/myfile.bin</url-pattern>
        </servlet-mapping>
    </web-app>

  • Specify JNDI Name For EJB Module

    Hi folks, please I need to know how I can specify the Jndi name for an ejb module I am creating in netbeans 5.0, to be accessed by a web application.
    If this can be done using the sun java system application server 9 admin consle (just as for JDBC Resources), i'll also like to know how.
    Thanks.

    Thanks Jay. I went through the links, it seems that if you have the JNDI name set in the weblogic-ejb-jar.xml, there is no need to set the same in the weblogic admin console. I am using ejb 2.x version. Particularly if you get the WLInitialContextFactory in your code , then there is no need to set the JNDI name in the JNDI tree in weblogic admin console.
    Like:-
    Context ctx = null;
    java.sql.Connection conn = null;
    Hashtable<String,String> ht = new Hashtable<String,String>();
    ht.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
    ht.put(Context.PROVIDER_URL,"t3://localhost:7001");
    This will take care of JNDI tree, hence there is no need to set the JNDI name explictly in the weblogic admin console.
    Please correct me if i am wrong. Whether for datasource also whether we can do the same, by setting the resource-ref with datasource in the ejb-jar.xml and not set anything in weblogic admin console? Thanks.

  • How to specify dataschema name for oracle data source?

    hi all,
    I've a following problem:
    we have specified 2 Oracle dataschemas into a one Oracle SID, choosing of dataschema depends on user login name. So, if I use SQL/Plus then I successful connect with proeprietary database schema, and when I specify this user in "data-sources.xml" for datasource definition, however connection estabished with a default dataschema.
    And so question: how can I choose proeprietary database schema defined in one Oracle SID? There is any settings for this purpose in data-sources.xml?
    thanx in advance,
    Val.

    sorry, it works! was my error.

  • Where can I find a list of names for each component and functions for each component?

    I have a test I need to study for, and we used this program in class during our labs. Is there any place I can find the names of the components and definitions of their exact functions? Thanks.
    If not I'll post pictures of the VI's we created, hopefully this is a simple question though.

    Try the context help.  When you move the cursor over each item, the help window will show a brief description and in most cases a link to detailed help.  It is generally useful to keep context help turned on while programming.
    Lynn

  • Merging cells for each row possible?

    Hi,
    I'm trying to merge two columns together (First name and Surname) so that the values are together i.e.
    A1 with A2
    B1 with B2 etc.
    Is there a way to do it all in one go so I don't need to go through each row manually? There are around 4000 entries, so I hope so!
    Thanks for any help,
    osu

    osu,
    You can do this by writing an expression in a third column. So, A & B will be joined in, for instance, C.
    This can be done either with the concatenation operator, "&", or with the CONCATENATE function.
    Writing =A&B will do it literally as you have requested. Most people would want a space between the two. You can do that with: =A&" "&B.
    After writing that in C1, click back on C1 and Edit > Copy. Then click on the "C" label above C1 to select the entire column. Now Edit > Paste to fill the rest of column with your expression.
    Be prepared to wait awhile for it to calculate because 3000 rows is a large file for Numbers. A "spinning ball of hard work" may be present for some time before you see the results.
    Let us know how that goes for you.
    Jerry

  • Default partition name for Interval partitioned tables

    Hi ,
    Can we change the default partition names which are generated by Oracle.
    For Example :
    CREATE TABLE part_interval (
    id NUMBER,
    created_date DATE
    PARTITION BY RANGE (created_date)
    INTERVAL (NUMTOYMINTERVAL(1,'MONTH'))
    PARTITION part_01 values LESS THAN (TO_DATE('01-NOV-2007','DD-MON-YYYY'))
    Now if I insert values which doesn't fall in the 01-NOV-2007 date, a new partition is created like SYS_P43. Can I change this default partition name in the SQL statement itself . Not through procedures or functions.
    Regards,
    Raghunathan A
    Edited by: 869187 on Jun 29, 2011 6:08 AM

    869187 wrote:
    Hi ,
    Can we change the default partition names which are generated by Oracle. post SQL & results that show you can change partition names generated by YOU.

  • Custom names for each browser window

    I usually have at least 4 Safari windows open at once.  Each has at least 5 tabs.  Each window represents a different category of work or research I'm doing.  I do a 4 finger swipe down to view all open Safari windows, since I'm constantly flipping between these windows.  Is there some way to give each of these windows a name when I do  a 4 finger swipe down?  This would let me know what is going on with each window.  Right now, there really isn't a way tell and it turns into trial and error.
    Or, is there some better method for managing these windows?

    I have the same need. Is this a feature now 3 years later? If so, where do you access it? If not, can I add my vote to make it a feature?
    thx

  • How to get LR using unique names for each file?

    Hey there,
    I see LR does modify the name of the File when there is already one file with the same name in the folder of import, but once you choose a different folder it does import the File with the original name. I just realized that over the years using Folders such as Pictures 2009, Pictures 2010 and so on, I have three or four times Files with the same Name. Is there a way to tell LR to always use unique names when it imports?

    Use a date-description-sequence.ext naming template for renaming as you import [or if you prefer after you import]. This means you never have duplicates unless you for some bizarre reason use same name description for two sets of files on same day. And if you need to do just that, simply make the start number of second/third lot of files be one number greater than previous batch from same day.
    You can set up what ever naming format you desire in file rename dialogue and have that as your default.
    Leaving files names as they come out of the camera is asking for big trouble as invariably they will duplicate, which is not a good idea even if in different folders.
    F2 gets you renaming dialogue when in Library.

  • Specifying a process name for a java application

    Hi,
    we run multiple java applications on our Windows 2003 server. It is diffucult to monitor these processes as they all appear as "java.exe" in the Windows Task Manager > Processes.
    Is there a way to specify a name for such a process? My colleague has suggested creating a copy of java.exe for each process, and then renaming the executable to reflect the name of the application it is starting. I think this method is not very flexible.
    Thank you for your suggestions in advance.

    Is there a way to specify a name for such a process?
    My colleague has suggested creating a copy of
    java.exe for each process, and then renaming the
    executable to reflect the name of the application it
    is starting. I think this method is not very
    flexible.That is the easiest though.
    If you don't like it then I think (as a guess only) that the following is possible.
    1. Create your own java launcher. As long as you don't distribute it you can start with the java source code for this.
    2. Find the Windows API that allows you to change the application name on start up.
    3. Modify the launcher to do this via a command line option.
    Of course there might not be any such API.

Maybe you are looking for