Values for 'Uid' property must be Text_for style on listbox

<Style x:Name="foo" TargetType="ListBox">
<Setter Property="Background">
<Setter.Value>
<!-- Your resources go here. -->
<SolidColorBrush x:Uid="{ThemeResource ListBoxFocusBackgroundThemeBrush}" Color="Green"/>
</Setter.Value>
</Setter>
</Style>
Error Values for 'Uid' property must be Text

What are you trying to do here?
As the error states, the x:Uid must be plain text. You cannot bind it to a brush.
The Uid is used for localization to identify which localized resource to use. It makes no sense in the SolidColorBrush context.

Similar Messages

  • Problem cf10 installation xml error - Conflicting values for output property method

    We just completed a ColdFusion 10 installation on Windows Server 2008 R2. After taking care of some configuration issues, we're now faced with a problem that we can't figure out. Searches on Google for the error returned almost nothing.
    The error occurs when xmltransform is called in a CFC file. The error we get from CF is:
    An error occured while Transforming an XML document
                 Failed to compile stylesheet. 1 error detected.            
    It's not very helpful. In the coldfusion-error.log file, we have this entry:
    Error at xsl:output on line 2 column 193
      XTSE1560: Conflicting values for output property method
    Anyone have any ideas how to fix this? Is it something simple that we overlooked, or a fundamental difference in the way CF10 handles xmltransform?
    Thanks,
    Jamie Carter

    Here is the XSLT:
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
    <xsl:output method="html" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" media-type="application/xhtml+xml" />
    <xsl:include href="E:\Inetpub\wwwroot\cfroot\cms\aacc-cms\general\xslt\aacc_main_browse.xsl" />
    <xsl:include href="E:\Inetpub\wwwroot\cfroot\cms\aacc-cms\general\xslt\rotator\aacc_home_rotator.xsl" />
    <xsl:include href="E:\Inetpub\wwwroot\cfroot\cms\aacc-cms\general\xslt\nav\aacc_home_side_menu.xsl" />
    <xsl:include href="E:\Inetpub\wwwroot\cfroot\cms\aacc-cms\general\xslt\news\aacc_home_news.xsl" />
    <xsl:template match="page">
      <!-- homepage --> 
            <div class="home_rotator_nav_div">
              <div class="nav" id="nav"><xsl:comment>nav div</xsl:comment></div>
            </div>
            <div id="home_rotator_container">
              <xsl:call-template name="home_side_menu" />
                <xsl:choose>
                  <xsl:when test="string-length(text/child::*[attribute::seq=12])=0" >
                    <xsl:comment>emergency alert not active</xsl:comment>
                  </xsl:when>
                  <xsl:otherwise>
                    <div id="emergency">
                    <div id="emergencyClose">
                      <a onclick="document.getElementById('emergency').style.display='none';">
                        close <img src="/aacc-cms/general/images/icons/controls/close.png" />
                        </a>
                      </div>
                      <div id="emergencyHeader"><h1>AACC Alert</h1></div>
                      <xsl:apply-templates select="text/child::*[attribute::seq=12]" />
                      <br /><br />
                    </div>
                  </xsl:otherwise>
                </xsl:choose>
              <div class="home_rotator_img">
                    <xsl:call-template name="aacc_home_rotator" /><xsl:comment>rotator</xsl:comment>
              </div>
            </div>
      <div id="body_container_top_bg"><div id="body_container_bottom_bg"><div id="homepage_body_container">
            <div class="bottom_center_home">
              <div id="bottom_center_content">
                <xsl:if test="string-length(image/child::*[attribute::seq=1]/imgFile)>0" >
                  <div id="homepage_ad_1a">
                    <xsl:apply-templates select="image/child::*[attribute::seq=1]" />
                  </div>
                </xsl:if>
                <div id="homepage_ad_1b">
                  <xsl:comment>bottom ad</xsl:comment>
                  <a href="#"><xsl:apply-templates select="image/child::*[attribute::seq=2]" /></a>
                </div>
              </div>
            </div>
           <div id='e2campus' style="visibility:hidden;"> <script type="text/javascript" src="http://widgets.omnilert.net/f300fe3c5dccfdb6d076ecb0048934fa-1791">//</script> </div><!--E2campus smart code-->
            <div id="body_bottom_left_home">
              <div id="body_bottom_right_home">
                <h2>AACC Highlights </h2>
                <div class="highlights">
                  <div class="highlights_title">
                    <xsl:if test="string-length(text/child::*[attribute::seq=7])>0" >
                      <div id="tertiary_1_txt1" ><xsl:apply-templates select="text/child::*[attribute::seq=7]" /><img src="/aacc-cms/general/image/cleardiv.png" /></div>
                    </xsl:if>
                  </div>
                </div>
                <div class="highlights">
                  <div class="highlights_title">
                    <xsl:if test="string-length(text/child::*[attribute::seq=8])>0" >
                      <div id="tertiary_1_txt2" ><xsl:apply-templates select="text/child::*[attribute::seq=8]" /><img src="/aacc-cms/general/image/cleardiv.png" /></div>
                    </xsl:if>
                  </div>
                </div>
                <div class="highlights">
                  <div class="highlights_title">
                    <xsl:if test="string-length(text/child::*[attribute::seq=9])>0" >
                      <div id="tertiary_1_txt3" ><xsl:apply-templates select="text/child::*[attribute::seq=9]" /><img src="/aacc-cms/general/image/cleardiv.png" /></div>
                    </xsl:if>
                  </div>
                </div>
                <div class="highlights">
                  <div class="highlights_title">
                    <xsl:if test="string-length(text/child::*[attribute::seq=10])>0" >
                      <div id="tertiary_1_txt4" ><xsl:apply-templates select="text/child::*[attribute::seq=10]" /><img src="/aacc-cms/general/image/cleardiv.png" /></div>
                    </xsl:if>
                  </div>
                </div>
                <div class="highlights">
                  <div class="highlights_title">
                    <xsl:if test="string-length(text/child::*[attribute::seq=11])>0" >
                      <div id="tertiary_1_txt5" ><xsl:apply-templates select="text/child::*[attribute::seq=11]" /><img src="/aacc-cms/general/image/cleardiv.png" /></div>
                    </xsl:if>
                  </div>
                </div>
                <xsl:if test="string-length(image/child::*[attribute::seq=3]/imgFile)>0" >
                  <div class="highlights_last">
                    <div class="highlights_last_title">
                      <xsl:apply-templates select="image/child::*[attribute::seq=3]" />
                    </div>
                  </div>
                </xsl:if>
                <xsl:if test="string-length(image/child::*[attribute::seq=4]/imgFile)>0" >
                  <div class="highlights_last">
                    <div class="highlights_last_title">
                      <xsl:apply-templates select="image/child::*[attribute::seq=4]" />
                    </div>
                  </div>
                </xsl:if>
                <xsl:if test="string-length(image/child::*[attribute::seq=5]/imgFile)>0" >
                  <div class="highlights_last">
                    <div class="highlights_last_title">
                      <xsl:apply-templates select="image/child::*[attribute::seq=5]" />
                    </div>
                  </div>
                </xsl:if>
                <xsl:if test="string-length(image/child::*[attribute::seq=6]/imgFile)>0" >
                  <div class="highlights_last">
                    <div class="highlights_last_title">
                      <xsl:apply-templates select="image/child::*[attribute::seq=6]" />
                    </div>
                  </div>
                </xsl:if>
                <xsl:if test="string-length(image/child::*[attribute::seq=7]/imgFile)>0" >
                  <div class="highlights_last">
                    <div class="highlights_last_title">
                      <xsl:apply-templates select="image/child::*[attribute::seq=7]" />
                    </div>
                  </div>
                </xsl:if>
              </div>
              <div class="bottom_left_home">
                <h2 style="font-size:16px; font-weight:bold;"><a href="/newsroom" style="color:#ffffff;">AACC Newsroom</a></h2>
                <div id="home_news_content">
                  <!--<div class="homepage_news_item" style="color:#ff0000;">
                     <div class="homepage_news_headline">
                      <h3>Password Management Tool Unavailable 3/7-3/8</h3>
                    </div>
                    <div class="homepage_news_preview">
                      As part of the Friday scheduled system downtime which starts at 9:30 p.m., we will be upgrading the password management tool on March 7th. Due to the nature of this upgrade, we anticipate the password management tool to be unavailable until 3:30 p.m. on Sat., March 8th. During this time, you will not be able to reset your password. We will provide updates here on the AACC website and the portal.
                    </div>
                  </div> -->
                  <div id="news_articles" class="news_articles">
                  Loading newsroom feed...
                    <img src="/aacc-cms/general/image/cleardiv.png" />
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </xsl:template>
    <xsl:template match="image/child::*[attribute::seq &lt; 3]" ><xsl:call-template name="genImg" /><br /></xsl:template>
    <xsl:template match="image/child::*[attribute::seq &gt; 2]" ><xsl:call-template name="genImg" /></xsl:template>
    </xsl:stylesheet>

  • Visual Studio 2012 SharePoint Project Error : The partial project item type does not have a value for this property

    Hi,
    I am getting this error from visual studio 2012 whenever i try to create the following project types:
    - Workflow Custom activity
    - Web parts
    The error is as mentioned below
    "The partial project item type does not have a value for this property"
    Due to this the when I add above type of items in my project, they show a red cross icon against them.
    Please let me know If have you any solution?

    Hi
    I had same issue. Below is the solution
    Installing
    "Visual Studio 2012 Update 3" usually solves this problem. (You can download it through microsoft's official site at
    "http://www.microsoft.com/en-in/download/details.aspx?id=39305")
    Hansraj Rathva

  • Adjusting Portal Pages throws "Specify a value for the property {0}"

    I found (with the help of our friends at OSS) the setting I need to change with to adjust the Runtime frame size for Guided Procedures.
    It's quite logical really, since GP is just a bunch of pages in the portal it would make sense to find them in the Portal Content option ... So there it was.
    Content Administration > Portal Content
    Search for content and go to Process Instance. The following part shows the 3 main content parts of the GP Runtime window. As you can see in the third container are the two elements that contain your content. "Content Area" and "Public Content Area".
    Open those two areas (scroll down in the list in the middle, select one and press open) and change the value of Height Type from "Fixed" to "Automatic" or "Full Page".
    This is where I get my error (see the link below for a screenshot as well): When I try to change a value, any value or just open for modifying and try saving again (without changing anything) I get this error:
    [http://wow.telenet.be/delaware/property0.jpg]
    Specify a value for the property
    Now I don't know if there any portal expert watching this thread, but it seems as though all those pages have been wrongly configured from the start. And until I figure out the right configuration I won't be able to save them either way.
    My question is two-fold:
    1) Can anyone provide me with all the settings he has for this component so I can compare them to mine?
    2) How do I fix this error? I'm assuming every page in the portal gives the same error?
    Thanks in advance,
    Frederik-Jan
    Edited by: Frederik-Jan Roose on Apr 1, 2008 11:33 AM
    Edited by: Frederik-Jan Roose on Apr 1, 2008 11:33 AM

    I found (with the help of our friends at OSS) the setting I need to change with to adjust the Runtime frame size for Guided Procedures.
    It's quite logical really, since GP is just a bunch of pages in the portal it would make sense to find them in the Portal Content option ... So there it was.
    Content Administration > Portal Content
    Search for content and go to Process Instance. The following part shows the 3 main content parts of the GP Runtime window. As you can see in the third container are the two elements that contain your content. "Content Area" and "Public Content Area".
    Open those two areas (scroll down in the list in the middle, select one and press open) and change the value of Height Type from "Fixed" to "Automatic" or "Full Page".
    This is where I get my error (see the link below for a screenshot as well): When I try to change a value, any value or just open for modifying and try saving again (without changing anything) I get this error:
    [http://wow.telenet.be/delaware/property0.jpg]
    Specify a value for the property
    Now I don't know if there any portal expert watching this thread, but it seems as though all those pages have been wrongly configured from the start. And until I figure out the right configuration I won't be able to save them either way.
    My question is two-fold:
    1) Can anyone provide me with all the settings he has for this component so I can compare them to mine?
    2) How do I fix this error? I'm assuming every page in the portal gives the same error?
    Thanks in advance,
    Frederik-Jan
    Edited by: Frederik-Jan Roose on Apr 1, 2008 11:33 AM
    Edited by: Frederik-Jan Roose on Apr 1, 2008 11:33 AM

  • Why do I get this error when running the PID Control-Single Channel.vi: "Requested value is not a supported value for this property."

    Error -200077 occurred at Property Node DAQmx Timing (arg 3) in DAQmx Timing (Sample Clock).vi:1->PID Control-Single Channel.vi
    Requested value is not a supported value for this property.
    Property: SampQuant.SampMode
    You Have Requested: Hardware Timed Single Point
    You Can Select: Finite Samples, Continuous Samples
    Author: Pcorcs
    Attachments:
    PID Control-Single Channel.vi ‏53 KB

    Actually I have already tried a few things you suggested and got as far as the DAQmx Write vi. The error at the DAQmx was a buffer error indicating i needed to set it to 2 instead of the default of 1. Tried using the DAQmx Input and Output Buffer vi to change buffer, with no luck.
    Attachments:
    PID Control-Single Channel.vi ‏53 KB

  • NSInvalidArgumentException : Attempt to set value for immutable property

    I get "An unexpected error has occurred. Please quit and reopen Keynote." EVERY time I try to copy a slide and change the master that controls it. Console says "Exception caught by top level: NSInvalidArgumentException : Attempt to set value for immutable property moviePoster." I'm not using any 3rd party themes. Advice from anyone?

    You can use the skip property of the train stop. You can have an EL expression for it, some thing like this #{pageFlowScope.isContinueEnabled}.
    Once all the mandatory fields are entered, you can set the isContinueEnabled flag and refresh the train button bar.
    For more info refer this: http://docs.oracle.com/cd/E14571_01/web.1111/b31974/taskflows_complex.htm#CJHFBFIE
    Also, you can try navigating to different train stops programmatically.
    Check: 082.      How-to programmatically navigate ADF train models
    in http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html

  • How to add values dynamically for custom property during design time?

    I am trying to create a user control with custom properties. I have a property named Server.
    And Values for this property is system dependent. I have the code that can generate the values and is working fine.
    During the design time, when I include this control in my application, and type the property name, I want Visual Studio to prompt for the values. Like it
    does for Alignment property for some controls shows Left, Right, Center.. during design time.
    If the Values are static, I can use an enum and it works fine. I need help with dynamic values.

    You can't, afaik.
    It's either an enum or you don't get that functionality of values.
    There is no right left centre, "Towards the top right but just off centre" - which I just thought of... option for example.
    Hope that helps.
    Recent Technet articles: Property List Editing;
    Dynamic XAML

  • Sorting for second property value?

    We have implemented a property read filter to set a value for a property SORT_ID.
    This works fine and the collection list renderer is customized to take the SORT_ID as "property for sorting". As fas as good.
    Our problem:
    In case the SORT_ID is identical, the list is not always sorted by name or ID as we suppose.
    Why? Is there any hint to get that going or is any implementation neccessary?
    Thanks for your help
    Helge

    Hi Helge,
    it's the same as with every other (standard) property - you can only sort by one property. If the sort_id property is not fine grained enough, it's a problem of the implementation of this property that it is able to return the same value for different resources. If you would add the name or the ID of the resource into the sort-id itself, this should do the trick (for example, have resources aaa and bbb; your sort-id calculates "5.5" for both resources; if your sort id would be created like "5.5_aaa" and "5.5_bbb", it would sort in first place for the sort-id, and after that for the name of the resource).
    Also see Collection renderer - Property for sorting (your own thread), Sort Multiple Properties and Sort Multiple Properties
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

  • Bulk editor is not returning values for default properties

    ..even though the content nodes have a value for this property. CQ version is 5.5.
    I need to export a report of all user generated content from /content/usergenerated/content/<sitename>/en. This is the root path.
    The query parameter I have specified is "type:Rating". By default the "sling:resourceType" is selected. No other custom properties are specified in the interface.
    The search returns the nodes of this type, but the results do not return a value for the "sling:resourceType" for these nodes.

    It should work. Might be you do not have data. Is the results shown as zero records?

  • For the property PollingStatement issue in WCF-SQL adapter

    Why i am getting below errors and finally receive port is disabled .
    Configured WC_SQl properties :
    In General tab:
    InBoundID=PODepartment
    IntialCatalog:Test
    Server: .
    First error :
    The Messaging Engine failed to add a receive location "RL_WCFCustomer" with URL "mssql://.//Test?InboundId=PODepartment" to the adapter "WCF-SQL". Reason: "Microsoft.ServiceModel.Channels.Common.AdapterException: The value
    "" for the property PollingStatement is invalid.
    Second error:
    The receive location "RL_WCFCustomer" with URL "mssql://.//Test?InboundId=PODepartment" is shutting down. Details:"The Messaging Engine failed while notifying an adapter of its configuration. ".

    After configure below properties ,getting new issue,but i don't see the schema in admin console which has mentioned in below schema related issue
    Property details
    Inbound operation type:TypedPooling
    Poll data available statement:select * from dbo.PODepartment
    Polling statement:select * from dbo.PODepartment
    Issue Details:
    There was a failure executing the receive pipeline: "Microsoft.BizTalk.DefaultPipelines.XMLReceive, Microsoft.BizTalk.DefaultPipelines, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Source: "XML disassembler" Receive
    Port: "RPN_WCFCustomer" URI: "mssql://.//Test?InboundId=PODepartment" Reason: Finding the document specification by message type "http://schemas.microsoft.com/Sql/2008/05/TypedPolling/PODepartment#TypedPolling" failed. Verify
    the schema deployed properly.

  • Creating multiple profiles, using unified profile types, to store multiple values for same properties

    Hi All:
    I am trying to create multiple profiles, using unified profile types, to
    store multiple values for same properties. Here my intention of using
    'unified profile types' is to create multiple profiles (to store multiple
    values for a property). All the properties are stored in the same database
    maintained by Personalization server. Also, I am trying to use the same
    'USER' ejb as profile class/home/pk/jndi.
    The scenerio is,
    define unified profile types (Business, Vacation) using Personalization
    admin tools, using com.beasys.commerce.axiom.contact.User,
    com.beasys.commerce.axiom.contact.UserHome,
    com.beasys.commerce.axiom.contact.UserPk,
    com.beasys.commerce.axiom.contact.User for Profile Class, Home, Pk class,
    JNDI name respectively.
    Define Property set 'HotelCommerce' with property
    HotelProp as single, restricted, text (valid values Single, Double)
    Now you can use the attached jsp files to login as a user and try to set the
    property value for HotelProp for each profile. As per my understanding, I
    was expecting that I can set different values for the property 'HotelProp'
    for each profiles. But unexpectedly, all the profiles get the same value.
    Question. is it the correct behavior? if yes, how can I achieve this
    functionality?
    if not, do you see any problem in my scripts?
    your answer asap is appreciated. we need to make decision on using
    Personalization server v/s developing our own Personalization server!!!:)
    thanks,
    -rajesh
    PS: I have tried 'Unified Profile Example' type too, but that did not work.
    [propsettest.jsp]
    [home.jsp]

    I am trying to create multiple profiles, using unified profile types, to
    store multiple values for same properties. Here my intention of using
    'unified profile types' is to create multiple profiles (to store multiple
    values for a property). All the properties are stored in the same database
    maintained by Personalization server. Also, I am trying to use the same
    'USER' ejb as profile class/home/pk/jndi.Hello Rajesh,
    This is not the purpose of the UUP. The UUP is used to allow existing
    database schemas to be aggregated with the existing Weblogic Personalization
    Server database schema to provide a single, customized user profile with which
    to maintain the user properties (
    http://e-docs.bea.com/wlcs/p13n/users.htm#1068901 )
    If you want to have properties that change value based on some "profile" or
    classification of a user, then you should use classifier rules to change the
    user from "OnVacation" to "AtWork" or "AtHome". You can use these classifier
    rules to select content for the user or conditionally execute logic (
    http://e-docs.bea.com/wlcs/p13n/rules.htm )
    Ture Hoefner
    BEA Systems, Inc.
    1655 Walnut Street; suite 200
    Boulder, CO 80302
    www.beasys.com

  • Driver class name value for SQL Server JDBC driver

    if i am using SQL Server JDBC driver to connect to DB using STRUTS DBCP
    what will be the value for the property="driverClassName"
    & value for property="url"
    eg., <data-source type="org.apache.commons.dbcp.BasicDataSource" >
    <set-property property="driverClassName" value="org.gjt.mm.mysql.Driver" />
    <set-property property="url" value="jdbc:mysql://10.1.0.8/omega4105" />
    <set-property property="username" value="iris"/>
    <set-property property="password" value="iris"/>
    </data-source>

    For SQL Server 2000
    com.microsoft.jdbc.sqlserver.SQLServerDriver
    For SQL Server 2005
    com.microsoft.sqlserver.jdbc.SQLServerDriver

  • "You must specify a value for this required field" in SharePoint list

    HI All,
    I have a couple of taxonomy fields in my content type. When I try to add a new item with my content type and save, I'm getting an error message "You must specify a value for this required field" against each taxonomy field. I'm not sure what am
    I missing. I deleted the content type and added that again to my list but still no luck. Can someone please help me out? Thanks.
    Regards,
    SC Vinod

    hi
    it depends how you updated existing field. We faced with the problem that update of taxonomy site column was not propagated to the lists. In Sharepoint when content type is bound to the list, new hidden content type is created for that list - you may check
    it if will enumerate
    SPList.ContentTypes property. And when you try to update site column changes may not be propagated to these list content types. In order to update it you need to get reference on a field from list content type and update if explicitly.
    Blog - http://sadomovalex.blogspot.com
    Dynamic CAML queries via C# - http://camlex.codeplex.com

  • Multiple TYPEELIM property values for an account

    I am trying to set automatic adjustment business rules and need to assign multiple multiple TYPEELIM property values for an account. Any idea how to achieve this?
    Here is my example. Letu2019s assume there are 2 eliminations I need to do.
    Elimination 1: Account A, B, C going to Account Y
    Elimination 2: Account A, B, D going to Account Z
    For elimination 1, to group source accounts (A,B,C), I want to assign u201CELIM1u201D for TYPEELIM property to all source account (A,B,C).
    For elimination 2, to group source accounts (A,B,D), I want to assign u201CELIM2u201D for TYPEELIM property to all source account (A,B,D).
    As you see, accounts A and B are repeated in both cases. I am not sure how I can assign both ELIM1 and ELIM2 property for these two accounts.
    Options I have thought of:
    1.     Include automatic adjustment line by line:  But since I have many accounts, this will be very lengthy and not good from maintenance point of view.
    2.     Include one ELIM1 in TYPEELIM and ELIM2 in Dimlist: But my real case is more than just two elims as mentioned above. What if there are 4 elim and includes same account?
    Any idea on this?
    Thanks in advance.

    Hi,
    http://help.sap.com/saphelp_bpc75/helpdata/en/5A/69200C88AA40C9B18844A25259F147/frameset.htm
    Administration->Business Calculation->Business Rule Management->Automatic Adjustment->Automatic Adjustment Detail
    This is for 7.5, but majority of contents are not changed from 7.0.
    Regards,
    YH Seo

  • Mkfs: bad value for nbpi: must be at least 1048576 for multi-terabyte, nbpi

    Hi, guys!
    *1. I have a big FS (8 TB) on UFS which contains a lot of small files ~ 64B-1MB.*
    -bash-3.00# df -h /mnt
    Filesystem Size Used Avail Use% Mounted on
    /dev/dsk/c10t600000E00D000000000201A400020000d0s0
    8.0T 4.3T 3,7T 54% /mnt
    *2. But today I noticed in dmesg such errors: "ufs: [ID 682040 kern.notice] NOTICE: /mnt: out of inodes"*
    -bash-3.00# df -i /mnt
    Filesystem Inodes IUsed IFree IUse% Mounted on
    /dev/dsk/c10t600000E00D000000000201A400020000d0s0
    8753024 8753020 4 100% /mnt
    *3. So, I decided to make file system with new parameters:*
    -bash-3.00# mkfs -m /dev/rdsk/c10t600000E00D000000000201A400020000d0s0
    mkfs -F ufs -o nsect=128,ntrack=48,bsize=8192,fragsize=8192,cgsize=143,free=1,rps=1,nbpi=997778,opt=t,apc=0,gap=0,nrpos=1,maxcontig=128,mtb=y /dev/rdsk/c10t600000E00D000000000201A400020000d0s0 17165172656
    -bash-3.00#
    -bash-3.00# mkfs -F ufs -o nsect=128,ntrack=48,bsize=8192,fragsize=1024,cgsize=143,free=1,rps=1,nbpi=512,opt=t,apc=0,gap=0,nrpos=1,maxcontig=128,mtb=f /dev/rdsk/c10t600000E00D000000000201A400020000d0s0 17165172656
    *3. I've got some warnings about inodes threshold:*
    -bash-3.00# mkfs -F ufs -o nsect=128,ntrack=48,bsize=8192,fragsize=1024,cgsize=143,free=1,rps=1,nbpi=512,opt=t,apc=0,gap=0,nrpos=1,maxcontig=128,mtb=n /dev/rdsk/c10t600000E00D000000000201A400020000d0s0 17165172656
    mkfs: bad value for nbpi: must be at least 1048576 for multi-terabyte, nbpi reset to default 1048576
    Warning: 2128 sector(s) in last cylinder unallocated
    /dev/rdsk/c10t600000E00D000000000201A400020000d0s0: 17165172656 sectors in 2793811 cylinders of 48 tracks, 128 sectors
    8381432.0MB in 19538 cyl groups (143 c/g, 429.00MB/g, 448 i/g)
    super-block backups (for fsck -F ufs -o b=#) at:
    32, 878752, 1757472, 2636192, 3514912, 4393632, 5272352, 6151072, 7029792,
    7908512,
    Initializing cylinder groups:
    super-block backups for last 10 cylinder groups at:
    17157145632, 17158024352, 17158903072, 17159781792, 17160660512, 17161539232,
    17162417952, 17163296672, 17164175392, 17165054112
    *4.And my inodes number didn't change:*
    -bash-3.00# df -i /mnt
    Filesystem Inodes IUsed IFree IUse% Mounted on
    /dev/dsk/c10t600000E00D000000000201A400020000d0s0
    8753024 4 8753020 1% /mnt
    I found http://wesunsolve.net/bugid.php/id/6595253 that is a bug of mkfs without workaround. Is ZFS what I need now?

    Well, to fix the bug you referred to you can apply patch 141444-01 or 141445-01.
    However that bug is just regarding an irrelevant error message from mkfs, it will not fix your problem as such.
    It seems to me like the minimum value for nbpi on a multi-terabyte filesystem is 1048576, hence you won't be able to create a filesystem with more inodes.
    The things to try would be to either create two UFS filesystems, or go with ZFS, which is the future anyway ;-)
    .7/M.

Maybe you are looking for

  • SSRS report with tabular model - MDX query to filter parameter data based on Tuple value.

    Hello Everyone, I am working on SSRS report in which a tabular model is being used as a backend. I want to filter the report parameters which are dependent to other parameters. Like, country, state, and cities drop downs. All are multi-select paramet

  • Itunes does not work on my windows vista

    When I tried to open my itunes, an error window popped up saying, "The folder Itunes cannot be found or created and is required. The default for this folder is inside the music folder" I have no idea what this means. Please help me because this probl

  • The installer encountered errors before apple mobile device support could be configured

    I'm having issues with installing apple mobile device support. Every time I try to install apple mobile device support I get this annoying message: the installer encountered errors before apple mobile device support could be configured I have tried t

  • Songs are all greyed out

    I purchased a 30gig ipod video today and I installed all of the software and stuff. And I went to reload my songs from my older playlist (from my ipod photo) and all of my songs on my ipod are all grayed out and unclickable. And there is a little loc

  • FW CS3 - Too many slices

    Hi, I am using FW CS3 and I have accumulated too many slices on my page. Is there any way to remove slices? Or maybe if I cannot remove them, is there a way to easily reorganize them?