Getting list of document name in a container

Hi,
I am trying to get list of all document names in a container using the following code in PHP:
http://dpaste.com/25409/
but I am getting an error as listed in the above link.
Any idea? I searched on Google but couldnt get any definitive answer.
Thanks.

Hello,
Try:
for $doc in collection() return dbxml:metadata('dbxml:name',$doc)
Regards,
George

Similar Messages

  • How to get list of file names from a directory?

    How to get list of file names from a directory?
    Please help

    In addition, this:
    String filename = files;Should be this:
    String filename = files;
    That's just because he didn't use the "code" tags, so [ i ] made everything following it become italicized.                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to get List Item attachments name without write any custom code or any database query?

    Hi,
    How to get List Items attachments name without write any custom code or any database query?

    You can get it from Rest,
    There are 2 options,
    1) create a 'Result Source' which has a search query for that List which has attachments 
     - Use rest query to get the 'Filename' , it will have the attachment file name 
    For example, if the result source id is : 73e6b573-abf8-4407-9e5f-8a85a4a95159 , then the query will be 
    http://[site URL]/_api/search/query?querytext='*'&selectproperties='Title,Path,FileExtension,SecondaryFileExtension,Filename'&sourceid='73e6b573-abf8-4407-9e5f-8a85a4a95159'&startrow=0&rowLimit=100
    You can refine the query, be giving proper 'querytext'
    2) Use the List rest api
    For example if your list guid is :38d524a1-e95c-439f-befd-9ede6ecd242e
    You can get he attachments for 1st item using this 
    http://[Site URL]/_api/lists(guid'38d524a1-e95c-439f-befd-9ede6ecd242e')/items(1)/AttachmentFiles
    get2pallav
    Please click "Propose As Answer" if this post solves your problem or "Vote As Helpful" if this post has been useful to you.

  • Getting list of domain names on NT, and authenticating user

    Hello, I want to make an class that will check the user login name and password on a NT domain, the class will show a screen with 2 fields, username and password, and a combobox, with all domain names, on this screen the user will type his username and password and choose a domain to login to, the class will then check if he can login to that domain.
    Currently the problem I have is that I couldn�t find a way to get a list of domain names.
    And after I get that list, what is the best way to authenticate the user ?
    Thanks a lot in advance for any help.

    hi,
    you can ask for username, password by running this code:
    String auth = httpRequest.getHeader("Authorization");
    if (auth == null)
    httpResponse.setStatus(httpResponse.SC_UNAUTHORIZED);
    httpResponse.setHeader("WWW-Authenticate", "NTLM");
    httpResponse.flushBuffer();
    return;
    if (auth.startsWith("NTLM "))
    byte[] msg = new sun.misc.BASE64Decoder().decodeBuffer(auth.substring(5));
    int off = 0, length, offset;
    if (msg[8] == 1)
    byte z = 0;
    byte[] msg1 = {(byte)'N', (byte)'T', (byte)'L', (byte)'M', (byte)'S', (byte)'S', (byte)'P',
    z,(byte)2, z, z, z, z, z, z, z,(byte)40, z, z, z,
    (byte)1, (byte)130, z, z,z, (byte)2, (byte)2,
    (byte)2, z, z, z, z, z, z, z, z, z, z, z, z};
    httpResponse.setHeader("WWW-Authenticate", "NTLM " +
    new sun.misc.BASE64Encoder().encodeBuffer(msg1));
    httpResponse.sendError(httpResponse.SC_UNAUTHORIZED);
    return;
    else if (msg[8] == 3)
    off = 30;
    length = msg[off+17]*256 + msg[off+16];
    offset = msg[off+19]*256 + msg[off+18];
    String remoteHost = new String(msg, offset, length);
    length = msg[off+1]*256 + msg[off];
    offset = msg[off+3]*256 + msg[off+2];
    String domain = new String(msg, offset, length);
    length = msg[off+9]*256 + msg[off+8];
    offset = msg[off+11]*256 + msg[off+10];
    String username = new String(msg, offset, length);
    You can put this code in youe servlet or in a filter.
    I am also strucked with similar problem.
    With this code i am getting the window to enter loginId/password but i am not able to authenticate it.
    If you have found any solution to authenticate the user please help me.
    i am really strucked.
    thanks in advance
    Pamjoshua

  • Indesign CS3: How to get the current document name?

    Hallo!
    How do I get the name of the current document loaded in Indesign?
    Thanks,
    Alois Blaimer

    ...Plese Ignore the last post...<br /><br />docRef is the UIDRef of the document. Plese consider the following code<br /><br />IDocument *docFrom = Utils<ILayoutUIUtils>()->GetFrontDocument(); <br />if (docFrom == NULL ) <br />    break; <br />UIDRef  docRef = GetUIDRef(docFrom )); <br /><br />InterfacePtr<IDocument> iDocument (docRef, IID_IDOCUMENT); <br />if(iDocument == nil) <br />   break; <br /><br />PMString docName; <br />iDocument->GetName(docName);

  • Getting list of cache names

    I have been using this code to get the list of all the cache names of my cluster :
    Cluster cluster=CacheFactory.ensureCluster();
    for (Enumeration<String> services = cluster.getServiceNames(); services.hasMoreElements(); )
         String sName = (String) services.nextElement();
         System.out.println("Service:"+sName);
         Service service=cluster.getService(sName);      
         if (service instanceof CacheService){
              CacheService cService=(CacheService)service;
              Enumeration<String> caches = cService.getCacheNames();           
              for (caches = cService.getCacheNames(); caches.hasMoreElements();){
                   // add caches.nextElement() in a list
    It is working fine but in order to access multiple clusters I have to use Coherence proxy/extend.
    When I use proxy/extend, the code above does not work anymore. I explain: when using proxy/extend, cluster.getServiceNames() returns Management and Cluster but does not return the Cache Services anymore.
    I have tried to get a cluster object in a different way :
    ((InvocationService) CacheFactory.getConfigurableCacheFactory().ensureService("ExtendTcpInvocationService")).getCluster;
    where ExtendTcpInvocationService is defined with <remote-invocation-scheme> but the result is the same.
    To sum up : I would like to get the list of all my cache names in a multi-cluster application ; is it possible?

    Thank you for the clue.
    I tried executing a Query with an Invocable object but I am getting some other exception:
    (Wrapped) java.io.IOException: readObject failed: java.lang.ClassNotFoundException: com.app.data.ListTask
    at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at java.io.ObjectInputStream.resolveClass(Unknown Source)
         at com.tangosol.io.ResolvingObjectInputStream.resolveClass(ResolvingObjectInputStream.java:66)
         at java.io.ObjectInputStream.readNonProxyDesc(Unknown Source)
         at java.io.ObjectInputStream.readClassDesc(Unknown Source)
         at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
         at java.io.ObjectInputStream.readObject0(Unknown Source)
         at java.io.ObjectInputStream.readObject(Unknown Source)
         at com.tangosol.util.ExternalizableHelper.readSerializable(ExternalizableHelper.java:2217)
         at com.tangosol.util.ExternalizableHelper.readObjectInternal(ExternalizableHelper.java:2348)
         at com.tangosol.util.ExternalizableHelper.readObject(ExternalizableHelper.java:2291)
         at com.tangosol.io.DefaultSerializer.deserialize(DefaultSerializer.java:74)
         at com.tangosol.coherence.component.net.extend.Channel.deserialize(Channel.CDB:15)
         at com.tangosol.io.pof.PofBufferReader.readAsObject(PofBufferReader.java:3316)
         at com.tangosol.io.pof.PofBufferReader.readObject(PofBufferReader.java:2604)
         at com.tangosol.coherence.component.net.extend.messageFactory.InvocationServiceFactory$InvocationRequest.readExternal(InvocationServiceFactory.CDB:5)
         at com.tangosol.coherence.component.net.extend.Codec.decode(Codec.CDB:29)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer.decodeMessage(Peer.CDB:25)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer.onNotify(Peer.CDB:54)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
         at java.lang.Thread.run(Unknown Source)
    From what I understand, the "server" excecuting the "run" from my invocable does not know the invocable class (ListTask).
    I suppose I have to put this class in the server classpath?
    Is there any way to have the result hoped without making any modification to the "server" ?

  • Get list of employees names in WD

    Hi all,
    i created an input field in my main view, and after running it in WEB if the user click on F4 help, he should get a list of all employees names,
    please show me how can i do this.
    thank you all

    Hi,
    You can do it in any application, below are the links,
    http://help.sap.com/saphelp_erp2005/helpdata/EN/30/d7fa41c915da6fe10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/47/9ef8c99b5e3c5ce10000000a421937/content.htm
    https://wiki.sdn.sap.com/wiki/display/Snippets/OVS%20search%20help
    Hope this will be useful.
    Regards,
    Meera

  • Connecting to cache and getting list of cache names

    I have a cache cluster (server) running on my local machine with these settings:
    ===============
    -server
    -Dcom.sun.management.jmxremote
    -Dcom.sun.management.jmxremote.port=28000
    -Dcom.sun.management.jmxremote.authenticate=false
    -XX:+HeapDumpOnOutOfMemoryError
    -Xmx1000M
    -Dfire.disable.cachestore=true
    -Dtangosol.coherence.wka=${hostname}
    -Dcom.sun.management.jmxremote
    -Dfire.tcp.extend.port=9199
    -Dtangosol.coherence.management=all
    -Dtangosol.coherence.management.remote=true
    -Dtangosol.coherence.cacheconfig=fire-cache-config.xml
    -Dtangosol.coherence.override=fire-cluster-config.xml
    -Dtangosol.join.timeout=1000
    -Dtangosol.coherence.ttl=0
    -Dlog4j.configuration=fire-log4j.xml
    -Dfire.coherence.storage.dir=${storage}
    ===============
    I am trying to connect to this cluster from another process (client), running on my local machine, with these settings:
    ===============
    -Dtangosol.coherence.distributed.localstorage=false
    -Dtangosol.coherence.wka=${hostname}
    -Dtangosol.coherence.management=all
    -Dtangosol.coherence.management.remote=true
    -Dcom.sun.management.jmxremote
    -Dtangosol.coherence.cacheconfig=fire-cache-config.xml
    -Dtangosol.coherence.override=fire-cluster-config.xml
    ===============
    The client process fails with the following error message:
    ===============
    java.lang.IllegalStateException: SafeCluster has been explicitly stopped or has not been started
    ===============
    When the following line of statement is executed:
    ===============
    Cluster cluster = CacheFactory.getCluster();
    cluster.getServiceNames(); // exception thrown
    ===============
    The server is running, and another process (written by someone else) is able to connect to it. The settings I am running client with have been validated against the settings that the working process is using. But, no luck.
    Oracle Coherence Version 3.3.1/389
    OS: Windows XP Pro
    Env: Eclipse 3.4 / sun-jdk-1.6.06
    I have been looking around for any intelligent sign of clue about whats going on. But have not been able to find anything useful on google or these forums or the javadoc API.
    Any help / info / pointers towards getting the client to connect to the server would be greatly appreciated.
    Thanks in advance
    Ajay

    Yes, I have. It does not get me access to caches in the cluster. ensureCluster does get me service names, but return null when I call cluster.getService(name);
    Do you have any reason to recommend ensureCluster instead of getCluster?
    My eventual goal is to get a list of all caches. If you have a better way to get a list of all caches, please do recommend / point me in the right direction.
    Thanks
    Ajay

  • How to get DocID and Document name

    Hi All,
    I am working on BO XR R3.1 version.i am looking to get DocID by BO SDK.i am able to see there is one fuction to for CUID (getCUID()) in BO sdk) same way can i get DocId like(986752) with single docid and documnet name.
    or is there any fuction in BO SDK to show DocID & Documnet name of single report?

    Hi  Nitin,
    See if this helps.
    http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_url_reporting_opendocument_en.pdf
    Regards,
    Shweta

  • Not getting the Document name when using CSWB

    happy New Year all!
    Am using SP Online.
    I have inserted the Content Search Web Part on a subsite to pull documents from a main list located on the parent site.
    It works ok but the result I am getting is the first line inside the document, so all I get a 10 identical results.
    team meeting
    team meeting
    team meeting
    How can I get the actual document name?
    Thank you
    Pierre
    pgg02

    Hello Sekar,
    I think I figured out the problem but still is strange.  Am trying things but SharePoint Online is extremely slow.
    When I created the library list, I only created 2 columns, one called "Name" the other "Tower", other columns got in like  automatically and are created by:, modified by, modified date.
    I went to edit one of the documents, and that's when I saw a field called "title" which does not appear See below:
    Columns
    A column stores information about each document in the document library. The following columns are currently available in this document library:
    Column (click to edit)
    Type
    Required
    Title
    Single line of text
    Tower
    Choice
    Created
    Date and Time
    Modified
    Date and Time
    Created By
    Person or Group
    Modified By
    Person or Group
    Checked Out To   
    Person or Group
    but in the column ordering screen see
    Field Order    
    Choose the order of the fields by selecting a number for each field under "Position from Top".
    Field Name  
    Position from Top   
    <input name="numSelects" type="hidden" value="3" />
    Name
    <select name="FormPosition0" title="Name: Position from Top"><option selected="selected" value="FileLeafRef">1</option>   <option value="FileLeafRef">2</option>   <option value="FileLeafRef">3</option>         
    </select>
    Title
    <select name="FormPosition1" title="Title: Position from Top"><option value="Title">1</option>   <option selected="selected" value="Title">2</option>   <option value="Title">3</option>         
    </select>
    Tower
    <select name="FormPosition2" title="Tower: Position from Top"><option value="Tower">1</option>   <option value="Tower">2</option>   <option selected="selected" value="Tower">3</option>         
    </select>
     A field called "Name" mysteriously appeared.
    The text in the "Name" fields was the same for all items so that explains why I was getting 10 times the same result.
    I went back to my list and copied the unique file name (library of word documents) into the "Name" field. But now when I am finally able to try the query I get the same results as before.?!
    here is the KQL
    path:"https://proposalforcondo.sharepoint.com"  (FileExtension:doc OR FileExtension:docx OR FileExtension:xls OR FileExtension:xlsx OR FileExtension:ppt OR FileExtension:pptx OR FileExtension:pdf) (IsDocument:"True"
    OR contentclass:"STS_ListItem")
    The result I get is:
    RelevantResults                       
                    (8)           
                        Home.aspx               
                            proposalforcondo.sharepoint.com/Home.aspx.docx                   
                        CARLETON CONDOMINIUM CORPORATION NO. 12               
                            proposalforcondo.sharepoint.com/C12_MINUTES_Oct 28...                   
                        CARLETON CONDOMINIUM CORPORATION NO. 12               
                            proposalforcondo.sharepoint.com/C12_MINUTES_July4_...                   
                        CARLETON CONDOMINIUM CORPORATION NO. 12               
                            proposalforcondo.sharepoint.com/C12_MINUTES_Septem...                   
                        CARLETON CONDOMINIUM CORPORATION NO. 12               
                            proposalforcondo.sharepoint.com/C12_MINUTES_July31...                   
                        CARLETON CONDOMINIUM CORPORATION NO. 12               
                            proposalforcondo.sharepoint.com/C12_MINUTES_June17...                   
                        CARLETON CONDOMINIUM CORPORATION NO. 12               
                            proposalforcondo.sharepoint.com/C12 - MINS_June 25...                   
                        CARLETON CONDOMINIUM CORPORATION NO. 12               
                            proposalforcondo.sharepoint.com/C12 - MINS_June11_...
    Any suggestion?
    Thanks again
    Pierre
    pgg02

  • Most efficient way to get document names?

    I was wondering what is the most efficient way to get the document names in a container? Use the built in 'name' index somehow, or is there an 'efficient' XPath/XQuery?
    We've been using the XPath /* which is fine with small instances, but causes a java heap out of member error on large XML instances i.e. /* gets everything which is not ideal when all we want are document names.
    Thx in advance,
    Ant

    Hi Antony,
    Here is an example for retrieving the document names on c++:
    void doQuery(XmlContainer &container,
    XmlQueryContext &context,
    const std::string &XPath)
    XmlResults results(container.queryWithXPath(0, XPath, &context));
    // Iterate through the result set as is normal
    XmlDocument theDocument;
    while(results.next(theDocument))
    std::cout << "Found document named: "
    << theDocument.getName() << std::endl;
    Regards,
    Bogdan Coman

  • Getting list of view`s attributes names

    Hi experts,
    Is it possible to get list of attributes names on a view? After calling
    create_view(...)
    in controller I would like to iterate through all view`s attributes and fetch data from model for all attributes with the same name on view and model. So, I need a way how to get information about all attributes on a view.
    Best regards, Maksim Rashchynski.

    Hi Maksim Rashchynski ,
    You should use model data binding to cater your requirement.    What you have to do is define all your attributes in model and just define a reference in page attributes of your view using
    type ref to your_model
    now in your View code like this
    <htmlb:label for    = "Myfield"
                     design = "EMPHASIZED" />
        <htmlb:inputField id      = "fldid"
                          value   = "//model/field1"
                           disabled ="False"></htmlb:inputField>
    what will happen after this is you can easily get your data to your view directly from model and viceversa.
    Hope it helps else revert back.
    Regards
    Amit Kumar

  • Where used list for document ( In material )

    I have t code CSD5 which gives me list of document used in BOM, and then by CV04n I can take material wise document.
    But If I want to get list of material for which a particular document is attached I donu2019t have any standard T code. Any Idea how to get it?
    Appreciated !
    Neal

    Thanks for reply ,
                                I knew this option but for this I will have to go to individual DIR ( CV02n) and check it . Is there any report where I can give list of mat ( may be range ) and get list of documents to each material as report ?
    Neal

  • Related Item link is broken in DispForm.aspx for a task in Workflow Tasks list if file name contains " ' " (single quote)

    Description:
    We have created a custom workflow in Microsoft Visual Studio 2013 and SharePoint 2013. This Workflow is associated with a Document library.
    This Workflow starts as soon as any new item is created OR updated in Document library and creates a Task in Workflow Tasks list.
     Related Item link is not working in following scenario -
    Upload a file that contains “ ' “
    in its name, in a document library
    Navigate to Workflow Tasks list
    Open View Item form (DispForm.aspx ) of  Task Created by workflow then click on link in Related Item fields
    OUPUT:
    Related Item link  truncates after “ ' “
    Eg.
    Original Link: http://<Site URL>/Documents/te'st.txt
    Related Item Field: http://<Site URL>/Documents/te
    Is this known bug in SharePoint 2013 OR any hotfix available to fix it.

    Hi,
    As I tested per your description, I can reproduce the issue as well.
    From what I have found out, it seems SharePoint resolve single quote into different code in different place. During the test, if I set Task Name to Document Name, single quote will be resolved to &#39; , if I set some field to Document encoded URL, single
    quote will be resolved to %27 . For now, I haven't found out any article talking about this issue.
    As workaround, we may find out a way to change the Related Item field. However, it is OOB field in workflow task (SharePoint 2013) content type, and this content type cannot be modified in form.
    I'd suggest you add new column to get document url and place in the form in Task content type settings.
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • For four days I have been unable to open a lot of documents. When I try I get a message "The document "name" could not be opened. You don't have permission. This has happened to an important letter which I corrected four times. My Mac has altered the name

    This problem began when I typed in an address http www etc., making one mistake in the address. I corrected it and then tried to copy the address because it was long (I wanted to be able to acces it another time), and that's when the trouble starrted. I just copt documents to get a new one because it's quicker, but it is unorthodox, I know. Since then whenever I copy a document i cannot open it, and it often puts a gobledegook ending to the document name. I've started emailing texts to myself so as to keep them, but I MUST be able to use documents normally. I hava a MacBook Pro, using OS Mountain Lion 10.8.5. I don't like it. It's fairly new, and has messed up my system of documents : the size is alll wrong and the tabulations are worse than ever. I use text edit because I wanted to use Macdictate because I am handicapped (arthritis and firbomyalgia) but I have never been able to get it to work. Since I changed OS I cannot use Text edit properly any more. Please help me. I think it must be a bug that came through when I was putting this address in four days ago. I went to the site once I'd corrected the address and it was perfectly normal. I shall ring them today and ask them if this has happened to anyone else. I live in France. Thank you for your advice. Because I am handicapped and I do not dirve, it is very difficult to get to a Mac store. I deleted Mac cloud documents because I don't want to use it and I thought it might solve the problem, but it didn"t.

    Back up all data.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    I've tested these instructions only with the Safari web browser. If you use another browser, they may not work as described.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Triple-click anywhere in the following line on this page to select it. Copy the selected text to the Clipboard (command-C):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -R $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password. Nothing will be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1 or if it doesn't solve the problem.
    Boot into Recovery. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

Maybe you are looking for

  • Example jsp page is not displaying in browser

    HI, I have just installed tomcat serve and want to dispaly an example jsp page from "http://localhost:8080/webapps/examples/jsp/dates/date.jsp" but the following message is coming: HTTP Status 404 - /webapps/examples/jsp/dates/date.jsp type Status re

  • BB phone giving a lot of problem

    The blackberry phone which I purchased in month of February is giving me a lot of problems. The entire scenario is that on I purchased the Cell phone on 16th February 2012 and the very next day my phone was dead and when I went to the service center

  • Check in failed -  com.sap.webdynpro.generation.ant.GenerationAntTaskError

    Hi ,    I tried to chekced in Webdynpro Dc but it failed. I m sending log for error. What can be problem??? Development Component Build (2008-02-11 02:18:25)   Component name: prp   Component vendor: asianpaints.com   SC compartment: asianpaints.com_

  • Gathering Statistics on NON-PARTITIONED objects

    Hi, Is it possible to manually gather stats only for Non-Partitioned objects without touching any of the Partitioned objects? Oracle Version: 11.1.0.7 Thanks, Ishan

  • Profile Manager not quite loading...

    Hi all, I have a question about Profile Manager not loading on a fresh install. I've got this working in the past, but don't ask me how as I don't know anymore, plus the conditions were different. Now when I go to https://server.example.com/profilema