Maximum number of volumes "dbmsrv" can handle

We plan to reorganize our production EPR system. Our SAN has 176 disks. To be able to distribute the load evenly across all the physical disks I want to create as much volumes for the database.
I know from the past that "dbmsrv" wasn't able to handle so much volumes. It crashed because the answer packet was too big. One could add volumes but neither DBStudio nor DBMGui was able to show all the devices.
Is this problem still present in 7.7.7.06?
Markus

Hello Markus,
this issue had been fixed and is not present in 7.7.07.x :
[http://maxdb.sap.com/webpts?wptsdetail=yes&ErrorType=0&ErrorID=1153616]
regards,
Lars

Similar Messages

  • Is there a recommended maximum number of jobs QMaster can handle?

    In our setup we need to render some 4,000 - 8,000 short video segments (only a few seconds each). Right now we are submitting them all one after the other via the command line to a cluster (QAdministrator has been set to allow 10,000 batches in the queue).
    Has anyone experienced problems with queues this large? When rendering, QMaster randomly dies - mostly at around 1,000 batches. The batches remain in the spool but I need to reinstall the QMaster Service Node package to get everything off and running again.
    I don't like the idea of having to babysit the queue and I submitting the next one after the previous one negates the whole idea of using clusters.
    I've thought about adding more equipment to clear out the queue faster, but I don;t want to recommend this route if it doesn't work as that would be a huge expense wasted.
    It's almost as if QMaster has a memory leak but that's just a guess.
    Any thoughts or wisdom would be welcome.

    I would imagine most people submitting such a large number of jobs are using something more robust like Qube:
    http://www.pipelinefx.com/products/qube-film.php
    Qmaster is very buggy and would need a complete rewrite before it could be qualified for use in such an environment.

  • Maximum number of photos that can be imported into an iPhoto library?

    1. Does iPhoto have a maximum number of files or photos that it can handle in a single library?
    I have a lot of photos (20GB) that have not yet been imported into an iPhoto Library. I am going to set up a new library with the iPhoto Library Manager (iPLM), but am wondering if there is a maximum number of files that can be handled in a single library?
    2. Also, I don't think I want to import these, since that would create an iPhoto library as large as the source files. Are there any problems if I set up the preferences so that this library will not have the graphics imported into it?
    3. With iPLM, can you have different sets of preferences for each library?
    Thank you for any advice or suggestions.

    1. Does iPhoto have a maximum number of files or photos that it can handle in a single library?
    Apple advertises that iPhoto will handle 250,000 photos - I doubt that anyone has come close to that (or will)
    I have 19,278 in 237 events - 22 GB - on a G5 iMac and it is snappy with no issues
    I have a lot of photos (20GB) that have not yet been imported into an iPhoto Library. I am going to set up a new library with the iPhoto Library Manager (iPLM), but am wondering if there is a maximum number of files that can be handled in a single library?
    If you want those should be fine in one library
    2. Also, I don't think I want to import these, since that would create an iPhoto library as large as the source files. Are there any problems if I set up the preferences so that this library will not have the graphics imported into it?
    It is a choice - if you do NOT import them then you will be responsible for all future management - deleting, etc. Moving to a different location or computer is much more difficult if you reference your photos instead of importing them.
    Many people import them, burn the original source photos to CD or DVD and delete them from their disk letting iPhoto manage them
    3. With iPLM, can you have different sets of preferences for each library?
    I'm not sure but I do not think so
    Larry Nebel
    Message was edited by: LarryHN

  • How to find maximum number of users we can assign for Hyperion Planning.

    HI,
    How to find maximum number of users we can assign for Hyperion Planning.i.e., how to find license limit in hyperion planning 11.1.2.1.
    In Essbase propreties, the system is showing maximum planning users could be 65535.
    what would be the number for concurrent scenario?
    Thanks
    Giri
    Edited by: Giriprasad on Jun 18, 2012 2:18 AM

    The number of users would be based on your license agreement with Oracle, the system is not aware of your license agreement so it is up to you to stick to it.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Is there a limit or maximum number of pages that can be in one document?

    Is ther a maximum number of pages that can be created in one document?

    There is a maximum number of pages that can be safely created, what exactly that is is not defined, but when you get into hundreds of pages with lots of graphics, that starts getting hairy.
    It would be safer to break up your document into smaller parts and only assemble them at the end.
    Peter

  • Maximum number of tables that can be outer joined with one table in a query

    Hi All,
    Iam new to sql, so can you please let me know What is the maximum number of tables that can be outer joined with one table in a query?
    Thanks,
    Srini

    srinu2 wrote:
    Iam new to sql, so can you please let me know What is the maximum number of tables that can be outer joined with one table in a query?
    There is no limit to the number of tables you can outer join as long as you join them correctly.
    SQL> with a as
      2      (
      3      select 1 id, 2 b_key, 3 c_key from dual union all
      4      select 2 id, 1 b_key, 4 c_key from dual union all
      5      select 3 id, 3 b_key, 1 c_key from dual union all
      6      select 4 id, 4 b_key, 2 c_key from dual
      7      ),
      8      b as
      9      (
    10      select 1 id, 1 c_key2 from dual union all
    11      select 2 id, 5 c_key2 from dual union all
    12      select 3 id, 3 c_key2 from dual union all
    13      select 4 id, 2 c_key2 from dual
    14      ),
    15      c as
    16      (
    17      select 1 key1, 1 key2, '1-1' dta from dual union all
    18      select 1 key1, 2 key2, '1-2' dta from dual union all
    19      select 1 key1, 3 key2, '1-3' dta from dual union all
    20      select 1 key1, 4 key2, '1-4' dta from dual union all
    21      select 2 key1, 1 key2, '2-1' dta from dual union all
    22      select 2 key1, 2 key2, '2-2' dta from dual union all
    23      select 2 key1, 3 key2, '2-3' dta from dual union all
    24      select 2 key1, 4 key2, '2-4' dta from dual union all
    25      select 3 key1, 1 key2, '3-1' dta from dual union all
    26      select 3 key1, 2 key2, '3-2' dta from dual union all
    27      select 3 key1, 3 key2, '3-3' dta from dual union all
    28      select 3 key1, 4 key2, '3-4' dta from dual union all
    29      select 4 key1, 1 key2, '4-1' dta from dual union all
    30      select 4 key1, 2 key2, '4-2' dta from dual union all
    31      select 4 key1, 3 key2, '4-3' dta from dual union all
    32      select 4 key1, 4 key2, '4-4' dta from dual
    33      )
    34  select d.a_id, d.b_id, c.key1 as c_key1, c.key2 as c_key3, c.dta
    35  from
    36      c,
    37      (
    38      select
    39          a.id as a_id, b.id as b_id, a.c_key, b.c_key2
    40      from a, b
    41      where a.b_key = b.id
    42      ) d
    43  where d.c_key = c.key1 (+)
    44  and   d.c_key2 = c.key2 (+);
          A_ID       B_ID     C_KEY1     C_KEY3 DTA
             3          3          1          3 1-3
             4          4          2          2 2-2
             2          1          4          1 4-1
             1          2
    SQL>

  • What is the maximum number of columns that can be displayed by sqlplus?

    Hello,
    Questions:
    Is there a limit on what sqlplus can display?
    What is the maximum number of columns that can be displayed by sqlplus?
    I cannot find anything on this in my search. I checked the limits page:
    http://docs.oracle.com/cd/B19306_01/server.102/b14357/apa.htm#sthref3658
    http://docs.oracle.com/cd/E11882_01/server.112/e16604/apa.htm#i635278
    It does not specify any column limits; however, I'm thinking it is tied to LINESIZE which is system dependent.
    Please confirm if true.
    Thanks!

    Received answer directly from SQL*Plus Development:
    "sqlplus does not have a limit on the number of columns it displays."
    They created a table with more than 256 columns with data and had no problem retrieving the data.

  • TS1503 what is the maximum number of pictures I can store and keep on my iPhone 3G?

    What is the maximum number of pictures I can store (and keep indefinitely) on my iPhone 3GS (8GB)?

    It is a balancing act between your photos and everything else you have on the device (apps, mail, messages, etc.), so there is no specific "number" we can give you. Just keep track of your available memory, and make sure you back up your photos regularly so if you reach the maximum memory capacity, you can delete the oldest ones without worrying that they are not saved somewhere else:
    IMPORTING PHOTOS - WINDOWS/MAC
    Cheers,
    GB

  • IN cluse: what is the maximum number of values that can use in "in" caluse?

    Hi All,
    Please see the following querry
    select * from <table> where <columnname> in (value1,value2,....);
    My question is what is the maximum number of values we can put inside the bracket in the querry?
    I mean what is the maximum number of values that can use in "in" caluse.
    Best Reagrds
    Marcelo

    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14200/expressions014.htm
    A comma-delimited list of expressions can contain no more than 1000 expressions. A comma-delimited list of sets of expressions can contain any number of sets, but each set can contain no more than 1000 expressions.
    The following are some valid expression lists in conditions:
    (10, 20, 40)
    ('SCOTT', 'BLAKE', 'TAYLOR')
    ( ('Guy', 'Himuro', 'GHIMURO'),('Karen', 'Colmenares', 'KCOLMENA') )

  • What is maximum number of tables that can be used to create HTMLDB app?

    What is the maximum number of tables that can be used to create an HTMLDB app? There seems to be a 10-table limit?
    Thanks.
    Dianna Gibbs

    I have over 200 photos in my book and it was accepted. There is a limit on each widget though. The interactive widget seems to have a limit of around 30 or 40.

  • Windows Azure Active Directory MA - Maximum number of items that can be serialized or deserialized in an object graph is '500000'. Change the object graph or increase the MaxItemsInObjectGraph quota.

    Trying to use WAAD with FIM 2010 R2 SP1 (4.1.3496.0) and during export several objects cause a warning/info with:
    Maximum number of items that can be serialized or deserialized in an object graph is '500000'. Change the object graph or increase the MaxItemsInObjectGraph quota.
    I looked, this appears hard coded into the MA, anyone know what causes this? My best guess is something like a large group membership? Does anyone know what the limits around the WAAD MA are?
    Here is the indepth error logged during the failure:
    ProvisioningServiceAdapter::ExecuteWithRetry: Action: Export, Attempt: 0, Exception: Microsoft.Online.Coexistence.ProvisionRetryException: Unable to communicate with the Windows Azure Active Directory service. Tracking ID: e94e6020-8434-4aa7-9a29-b2edf7fe6b2e
    See the event log for more details. ---> System.ServiceModel.CommunicationException: There was an error while trying to serialize parameter http://schemas.microsoft.com/online/aws/change/2010/01:syncObjects. The InnerException message was 'Maximum number
    of items that can be serialized or deserialized in an object graph is '500000'. Change the object graph or increase the MaxItemsInObjectGraph quota. '.  Please see InnerException for more details. ---> System.Runtime.Serialization.SerializationException:
    Maximum number of items that can be serialized or deserialized in an object graph is '500000'. Change the object graph or increase the MaxItemsInObjectGraph quota.
       at System.Runtime.Serialization.XmlObjectSerializerContext.IncrementItemCount(Int32 count)
       at WriteArrayOfstringToXml(XmlWriterDelegator , Object , XmlObjectSerializerWriteContext , CollectionDataContract )
       at System.Runtime.Serialization.CollectionDataContract.WriteXmlValue(XmlWriterDelegator xmlWriter, Object obj, XmlObjectSerializerWriteContext context)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.SerializeAndVerifyType(DataContract dataContract, XmlWriterDelegator xmlWriter, Object obj, Boolean verifyKnownType, RuntimeTypeHandle declaredTypeHandle, Type declaredType)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.SerializeWithXsiType(XmlWriterDelegator xmlWriter, Object obj, RuntimeTypeHandle objectTypeHandle, Type objectType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle, Type
    declaredType)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.InternalSerialize(XmlWriterDelegator xmlWriter, Object obj, Boolean isDeclaredType, Boolean writeXsiType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.InternalSerializeReference(XmlWriterDelegator xmlWriter, Object obj, Boolean isDeclaredType, Boolean writeXsiType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle)
       at WriteSyncObjectGroupToXml(XmlWriterDelegator , Object , XmlObjectSerializerWriteContext , ClassDataContract )
       at System.Runtime.Serialization.ClassDataContract.WriteXmlValue(XmlWriterDelegator xmlWriter, Object obj, XmlObjectSerializerWriteContext context)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.SerializeAndVerifyType(DataContract dataContract, XmlWriterDelegator xmlWriter, Object obj, Boolean verifyKnownType, RuntimeTypeHandle declaredTypeHandle, Type declaredType)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.SerializeWithXsiType(XmlWriterDelegator xmlWriter, Object obj, RuntimeTypeHandle objectTypeHandle, Type objectType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle, Type
    declaredType)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.InternalSerialize(XmlWriterDelegator xmlWriter, Object obj, Boolean isDeclaredType, Boolean writeXsiType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle)
       at System.Runtime.Serialization.XmlObjectSerializerWriteContext.InternalSerializeReference(XmlWriterDelegator xmlWriter, Object obj, Boolean isDeclaredType, Boolean writeXsiType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle)
       at WriteArrayOfSyncObjectToXml(XmlWriterDelegator , Object , XmlObjectSerializerWriteContext , CollectionDataContract )
       at System.Runtime.Serialization.CollectionDataContract.WriteXmlValue(XmlWriterDelegator xmlWriter, Object obj, XmlObjectSerializerWriteContext context)
       at System.Runtime.Serialization.DataContractSerializer.InternalWriteObjectContent(XmlWriterDelegator writer, Object graph, DataContractResolver dataContractResolver)
       at System.Runtime.Serialization.DataContractSerializer.InternalWriteObject(XmlWriterDelegator writer, Object graph, DataContractResolver dataContractResolver)
       at System.Runtime.Serialization.XmlObjectSerializer.WriteObjectHandleExceptions(XmlWriterDelegator writer, Object graph, DataContractResolver dataContractResolver)
       at System.ServiceModel.Dispatcher.DataContractSerializerOperationFormatter.SerializeParameterPart(XmlDictionaryWriter writer, PartInfo part, Object graph)
       --- End of inner exception stack trace ---
    Server stack trace:
       at System.ServiceModel.Dispatcher.DataContractSerializerOperationFormatter.SerializeParameterPart(XmlDictionaryWriter writer, PartInfo part, Object graph)
       at System.ServiceModel.Dispatcher.DataContractSerializerOperationFormatter.SerializeParameter(XmlDictionaryWriter writer, PartInfo part, Object graph)
       at System.ServiceModel.Dispatcher.DataContractSerializerOperationFormatter.SerializeParameters(XmlDictionaryWriter writer, PartInfo[] parts, Object[] parameters)
       at System.ServiceModel.Dispatcher.DataContractSerializerOperationFormatter.SerializeBody(XmlDictionaryWriter writer, MessageVersion version, String action, MessageDescription messageDescription, Object returnValue, Object[] parameters, Boolean
    isRequest)
       at System.ServiceModel.Dispatcher.OperationFormatter.OperationFormatterMessage.OperationFormatterBodyWriter.OnWriteBodyContents(XmlDictionaryWriter writer)
       at System.ServiceModel.Channels.Message.OnWriteMessage(XmlDictionaryWriter writer)
       at System.ServiceModel.Channels.BufferedMessageWriter.WriteMessage(Message message, BufferManager bufferManager, Int32 initialOffset, Int32 maxSizeQuota)
       at System.ServiceModel.Channels.BinaryMessageEncoderFactory.BinaryMessageEncoder.WriteMessage(Message message, Int32 maxMessageSize, BufferManager bufferManager, Int32 messageOffset)
       at System.ServiceModel.Channels.HttpOutput.SerializeBufferedMessage(Message message)
       at System.ServiceModel.Channels.HttpOutput.Send(TimeSpan timeout)
       at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.SendRequest(Message message, TimeSpan timeout)
       at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
       at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    Exception rethrown at [0]:
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.Online.Coexistence.Schema.IProvisioningWebService.Provision(SyncObject[] syncObjects)
       at Microsoft.Online.Coexistence.ProvisionHelper.InvokeAwsAPI[T](Func`1 awsOperation, String opsLabel)
       --- End of inner exception stack trace ---
       at Microsoft.Online.Coexistence.ProvisionHelper.CommunicationExceptionHandler(CommunicationException ex)
       at Microsoft.Online.Coexistence.ProvisionHelper.InvokeAwsAPI[T](Func`1 awsOperation, String opsLabel)
       at Microsoft.Azure.ActiveDirectory.Connector.ProvisioningServiceAdapter.<>c__DisplayClass1.<Export>b__0()
       at Microsoft.Azure.ActiveDirectory.Connector.ProvisioningServiceAdapter.ExecuteWithRetry(String actionName, Action action).

    Hi gdedshg,
    >>Maximum number of items that can be serialized or deserialized in an object graph is '65536'. Change the object graph or increase the MaxItemsInObjectGraph quota
    When meet the above exception, please try to do the following configuration:
    On the server side:
    Add the following to the server's config file:
    <behaviors>
    <serviceBehaviors>
    <behavior name="MyServiceBehavior">
    <dataContractSerializer
    maxItemsInObjectGraph="2147483647" />
    </behavior>
    </serviceBehaviors>
    </behaviors>
    And reference it in the service using the following code:
    <services>
    <service
    behaviorConfiguration="MyServiceBehavior"
    name="serviceName">……
    On the client side:
    Add the following: 
    <behaviors>
    <endpointBehaviors>
    <behavior name="MyClientbehavior">
    <dataContractSerializer
    maxItemsInObjectGraph="2147483647"/>
    </behavior>
    </endpointBehaviors>
    </behaviors>
     And reference it in the endpoint using the following code:
    <endpoint address="serviceAddress"
    behaviorConfiguration="MyClientbehavior"
    For more information, please try to refer to the following article:
    http://blog.aggregatedintelligence.com/2011/01/wcf-maxitemsinobjectgraph-error.html .
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • What is the maximum number of users that can be simultaneously connected to a shared drive on an Airport Extreme

    What is the maximum number of users that can be simultaneously connected to a shared drive on an Airport Extreme?

    50
    I haven't tried this, but imagine that things are going to be quite slow.

  • HT4863 i am receiving a message that i have reached the maximum number of messages i can send out today but i have not even sent 5 emails out yet today ?

    i am receiving a message that i have reached the maximum number of messages i can send out today but i have not even sent 5 emails out yet today ?

    I'll add that this can happen when snapshotting is used as a backup method. You can set max endpoints to 32 and still see the issue. Please ensure that you're backing up using the supported PowerShell commands: http://technet.microsoft.com/en-us/library/hh202170.aspx
    and not just a snapshot of the VM. If raising max endpoints does not resolve the issue, try backing up with the management shell commands within a recurring scheduled task or try http://gallery.technet.microsoft.com/office/Backup-script-for-Lync-2013-aacbb9b9
    . Then disable the snapshot ting for your front ends, bounce them one at a time, and ensure the data exports you've made are backed up as flat files.
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications

  • Is there a maximum number of pics that can be transferred to a 64 gb ipad?

    i got a 64 gb ipad and when i tried to transfer a folder contains more than 50000 pictures to it, only about 4000 of them were transferred. i wondered if there is a maximum number of pictures that can be transferred to my ipad? or did i do that wrong? is there a way to do this? thanks in advance.

    You need to transfer all folders in one go - selecting one and syncing it, and then de-selecting that one and selecting a different one will just replace the first folder with the second folder on the iPad. To sync multiple folders they all need to be sub-folders off a parent folder, in which case they will appear as separate albums on the iPad (http://support.apple.com/kb/HT4236).
    As to how get around the limit I don't know, or whether its possible. I've also heard about the 256MB limit, but I don't how many photos that equates to - or whether it's at a folder or library level.

  • Is there a maximum number of pictures that can be uploaded to create a photo book?

    Is there a maximum number of pictures that can be uploaded to create a photo book?  I can't seem to drag anymore pictures to my current project.

    I have over 200 photos in my book and it was accepted. There is a limit on each widget though. The interactive widget seems to have a limit of around 30 or 40.

Maybe you are looking for

  • Error in JSP Page Compilation

    Hi...I found following error during my jsp page compilation...I am using Tomcat Server 4.1.18 as a server. org.apache.jasper.JasperException: Unable to compile class for JSP An error occurred at line: -1 in the jsp file: null Generated servlet error:

  • Document Number appearing twice.

    Hi Experts, In one document, particular line item of vendor payment is appearing twice with same document number, document type is KZ when checked in FBL3N. User, Date, Time and amount are identical. When checked Vendor account for the same, there is

  • Online downloadable seed records

    Hi Can anybody throw some light on the above subject Thanks Prasad

  • I don't  know what the *&*&#$ to do anymore

    I don;t understand as a paying user of creative why every singlr update has failed for the last 2 weeks. I am so sick of this damn company, really sick.

  • How to resolve insufficient privilege

    Hi, When i run the following the command, am getting error insufficient privilege. create view v1 as (select * from v$statname) ERROR at line 1: ORA-01031: insufficient privileges          but i can execute select statement alone like select * from v