MDX Logic Help Needed

I have a requirement where I am tracking movement of data from one member of a dimension (ie; "CostCenter", which is the Entity dimension) to another member of the same dimension.
I accomplish this by using a second dimension as the recipient (ie; "Customer"). The Customer dimension has a property (ie; "CustCC") which indicates which CostCenter member it relates to.
The (abbreviated) dimensionality looks something like this:
account,category,timeid,costcenter,customer,CustCC,SignedData
715000,BUDGET,20090000,CostCenter1,Customer1,CostCenter2,NH702,100.00
In this example, the one value is not a dimension is "CustCC".
The requirement is to be able to "get" the value where the "CostCenter" AND the "CustCC" are both descendants of the current view "CostCenter".
I would greatly appreciate suggestions as to hoew to accomplish this.
Regards,
Craig

No worries about asking lots of questions. Help is appreciated.
- The account value that you are building; is this from multiple accounts at the required intersection? It will be the value of a single account.
- Can you build a report that gets the same data? I am not sure how to do that is the result will differ depending on the CostCenter parent selected.
-Will this run in script logic as part of default logic? I believe a calculated member will work if I can figure out how to do it.
-Does the Customer dim CostCenter property relate to the parent costcenter?it is a value that represents "another"(clould be any) base level costcenter member.
So the calculation is going to be dynamic depending on which CostCenter parent is selected. For example, I want to show the value of another account (a single account) for the descendants of the current CostCenter member WHERE the Customer.CostCenter values are also descendants of the current CostCenter member.
I want to say give me a specific account (ie; [Account].[Chargesin]) and the Sum of the Descendants of the current CostCenter member ONLY when the Customer.CostCenter value is also a Descendant of the current CostCenter member.
Let me know if that helps. Thanks! Craig

Similar Messages

  • Scoring music to picture in Logic, Help needed!!!!

    Hi all,
    I've been re-scoring some videos for a course I'm doing, and have a few questions concerning the "Export audio to movie" function.
    Is there a way to mute the original sound from the movie file, when exporting my music to the movie???? When l have completed the above function, l find l have a movie file playing my music and the original.
    Any help would be great,
    Thanks, Matt

    I haven't been able to figure out a way to do that within Logic - though you can tweak the audio settings in the quicktime file itself to mute whichever channels you don't need - Apple + J shortcut.
    I'd suggest using "Save As" to make a new quicktime, so you have it ready any time you need to export music to pic.

  • Logic help needed.

    Dear Experts,
    I'm hoping someone can help us with the following issue. We have a piece of long running logic from consultants past and I think I found a part of the problem...but I'm not expert enough to figure out how to resolve. A little background on the business process. We have an application/cube for planning gross margin. This piece of logic is calculating the deductions. The product hierarchy is TotalProduct>Profit CenterBaseItem-->SKU.  The analysts work on their own profit centers. However, it looks to me like the logic is always going to select all profit center regardless of the SKU's the logic is being run for. There is a property in the dimension that specifies the profit center for the SKU's and this is used by the analysts (using the filter function) to select the SKU's over which to run the logic. Is there a way to write the select statement so it uses the property? The property is called PROFITCTR.
    *XDIM_FILTER CATEGORY=[Category].Properties("LRUN")="Y"
    *XDIM_MEMBERSET TIME=%TIME_SET%
    *XDIM_MEMBERSET RPTCURRENCY=LC
    *XDIM_MAXMEMBERS PRODUCT_CP_BASE = 1000
    *SELECT(%DED%, "[ID]", "PRODUCT_CP_BASE", "[PARENTH2] = 'CP_BASE_TOTAL' AND CALC = 'Y'")
    *FOR %D%=%DED%
    //#ZCOPA_CASH_DISC_1=[ACCOUNTGM].[SYS_CDPNSBF] * [ACCOUNTGM].[SYS_NSBF_STAR]     
    *RUN_ALLOCATION
    FACTOR= USING-1
    *DIM ACCOUNTGM           WHAT=SYS_NSBF_STAR;       WHERE=ZCOPA_CASH_DISC_1;          USING=SYS_CDPNSBF;
    *DIM DATASRC                WHAT=INPUT;                               WHERE=<<<;                       USING=<<<;      
    *DIM PRODUCT_CP_BASE       WHAT=BAS(%D%);    WHERE=<<<;               USING=OTHER_%D%;
    *DIM CUSTOMER_CP     WHAT=BAS(TOT_CUST);       WHERE=<<<;                USING=9999999;
    *ENDALLOCATION

    Hi Carlos,
    I see your point.
    One approach I thought of is this.
    Update your dtsx package that runs your gross margin logic. Open it in Notepad.
    Look for the line that says SELECTINPUT and change SELECTINPUT to just SELECT
    i.e. (note yours will be different since you have your product dimension as a selection choice)
    PROMPT(SELECTINPUT,,,,%CATEGORY_DIM%%ENTITY_DIM%%TIME_DIM%)
    This line above only allows INPUT level dimension members to be chosen from the selection screen.
    If you change the keyword SELECTINPUT to just SELECT, your selections will include parent members also (so now users will be able to choose parent members (i.e. actual Profit Center nodes residing in your PRODUCT_CP_BASE dimension).
    After you do that, you'll need to update your logic as follows:
    *XDIM_FILTER CATEGORY=Category.Properties("LRUN")="Y"
    *XDIM_MEMBERSET TIME=%TIME_SET%
    *XDIM_MEMBERSET RPTCURRENCY=LC
    *XDIM_MAXMEMBERS PRODUCT_CP_BASE = 1000
    //remove this line, because this chooses all products
    //*SELECT(%DED%, "ID", "PRODUCT_CP_BASE", "PARENTH2 = 'CP_BASE_TOTAL' AND CALC = 'Y'")
    //Update this line to use %PRODUCT_CP_BASE_SET%
    *FOR %D%=%PRODUCT_CP_BASE_SET%
    //#ZCOPA_CASH_DISC_1=ACCOUNTGM.SYS_CDPNSBF * ACCOUNTGM.SYS_NSBF_STAR
    *RUN_ALLOCATION
    *FACTOR= USING*-1
    *DIM ACCOUNTGM WHAT=SYS_NSBF_STAR; WHERE=ZCOPA_CASH_DISC_1; USING=SYS_CDPNSBF;
    *DIM DATASRC WHAT=INPUT; WHERE=<<<; USING=<<<;
    *DIM PRODUCT_CP_BASE WHAT=BAS(%D%); WHERE=<<<; USING=OTHER_%D%;
    *DIM CUSTOMER_CP WHAT=BAS(TOT_CUST); WHERE=<<<; USING=9999999;
    *ENDALLOCATION
    *NEXT
    Now when you run this package, you can select a profit center directly from the selection screen. Do not choose base level products anymore.
    Be very careful with this logic package and logic because you are now choosing parent level products (i.e. Profit Centers) and you DO NOT want to write data to your fact tables for calculated products members(i.e. rollup/parents).
    I would recommend you run this as part of separate package and logic file.
    Note: This line takes care of writing to only leaf level data in your PRODUCT_CP_BASE dimension.
    *DIM PRODUCT_CP_BASE WHAT=BAS(%D%); WHERE=<<<; USING=OTHER_%D%;
    Give it a try (in a test system!) and let us know how it goes.
    Carefully review the log file to see if it is producing the desired results.
    Goodluck,
    John

  • Calc script logic help needed urgently

    Hello Gurus,
    I am desiging a calc for Fringe Benefits account.
    Longterm disability is calculated by multiplying cost pr employee  per month ( constant hard coded number) with the % of Net Headcount
    % of NetHEadcount is NetHeadCount(at lowest dept level)/Company Total Headcount(Highest Dept Level)
    I have created accounts -- Netheadcount at lowest dept level
    Is there a possibility that I calculate the %age of account level 0 to same account at highest level?
    If not, please give me solution.
    Also, I want to thank all the gurus that have helped me. Thanks to you...I am automated 90% of the process. THis is the last leg for this porject. My respect to all the gurus on Oracle FOrums

    Hi
    Struggling a little to understand exactly what you need...are you just asking if you can calculate "%NetHeadCount" account, based on "Headcount" account at differing department levels?
    If so then I guess you just need something along the lines of...(assuming your fix is on level 0 members of your department dim)
    NetHeadCount% = Headcount / Headcount -> TotalDepartmentLevel;
    JB

  • Help Needed compile, deploy Web Service with Annotations on Web Logic 9.2

    Hi,
    I am new web logic and need some help in compiling, creating deployment file i.e. war, ear on Web Logic 9.2. I have the following sample web service with annotations code code but need help in compiling, creating deployment file (war,ear), creating proxy for testing etc. How to compile and create deployment files in WebLogic 9.2. Any help is really appreciated.
    package sample_ws;
    import java.rmi.RemoteException;
    import javax.jws.*;
    import javax.jws.soap.SOAPBinding;
    import org.w3c.dom.Document;
    @WebService
    @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL,
                 parameterStyle = SOAPBinding.ParameterStyle.BARE)
    public class EchoService {
        public EchoService() {
        @WebMethod(action="echo")
        @WebResult(targetNamespace="http://exa.org", name="echoResult")
        public Document echo(@WebParam(targetNamespace = "http://exa.org",
                                       name = "echoMsg")
            Document doc) throws RemoteException{
            return doc;
    }Thanks

    I am using Oracle Jdeveloper as an IDE and created a war file and deployed on Oracle App. Server it works fine. Now if I deploy the same war on Web Logic it gives me the following error:
    java.lang.IllegalStateException: could not find schema type named {{http}//exa.org}>>echoResult
    Errors were encountered while performing this operation. Here is the code I have:
    package webservice2 ;
    import java.rmi.RemoteException;
    import javax.jws.*;
    import javax.jws.soap.SOAPBinding;
    import org.w3c.dom.Document;
    @WebService
    @SOAPBinding(style = SOAPBinding.Style.DOCUMENT,
                 use = SOAPBinding.Use.LITERAL,
                 parameterStyle = SOAPBinding.ParameterStyle.BARE)
    public class EchoService {
        public EchoService() {
        @WebMethod(action="echo")
        @WebResult(targetNamespace="http://exa.org", name="echoResult")
        public Document echo(@WebParam(targetNamespace = "http://exa.org",
                                       name = "echoMsg")
            Document doc) throws RemoteException{
            return doc;
    }And here is the wsdl file I have:
    <definitions
         name="EchoServiceService"
         targetNamespace="http://webservice2/"
         xmlns="http://schemas.xmlsoap.org/wsdl/"
         xmlns:tns="http://webservice2/"
         xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
         xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
         xmlns:ns1="http://exa.org"
         xmlns:xsd="http://www.w3.org/2001/XMLSchema"
         xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
        >
        <types>
            <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://exa.org" elementFormDefault="qualified"
                 xmlns:tns="http://exa.org" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                 xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/">
                <element name="echoMsg" nillable="true">
                    <complexType>
                        <sequence>
                            <any/>
                        </sequence>
                    </complexType>
                </element>
                <element name="echoResult" nillable="true">
                    <complexType>
                        <sequence>
                            <any/>
                        </sequence>
                    </complexType>
                </element>
            </schema>
        </types>
        <message name="EchoServicePortType_echo">
            <part name="echoMsg" element="ns1:echoMsg"/>
        </message>
        <message name="EchoServicePortType_echoResponse">
            <part name="echoResult" element="ns1:echoResult"/>
        </message>
        <portType name="EchoService">
            <operation name="echo">
                <input message="tns:EchoServicePortType_echo"/>
                <output message="tns:EchoServicePortType_echoResponse"/>
            </operation>
        </portType>
        <binding name="EchoServiceSoapHttp" type="tns:EchoService">
            <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
            <operation name="echo">
                <soap:operation soapAction="echo"/>
                <input>
                    <soap:body use="literal" parts="echoMsg"/>
                </input>
                <output>
                    <soap:body use="literal" parts="echoResult"/>
                </output>
            </operation>
        </binding>
        <service name="EchoServiceService">
            <port name="EchoServiceSoapHttpPort" binding="tns:EchoServiceSoapHttp">
                <soap:address location="http://localhost:8888/EnableSrc-WebService2-context-root/EchoServiceSoapHttpPort"/>
            </port>
        </service>
    </definitions>Any ideas what might be wrong.

  • HT1338 Macbook pro two days old...bought logic from app store...logic has installed partly each time i open it up it wants to download rest of programme then stops half way thru and gets error message 'logic is unable to continue with download' help neede

    Macbook pro two days old...bought logic from app store...logic has installed partly each time i open it up it wants to download rest of programme then stops half way thru and gets error message 'logic is unable to continue with download' help needed !

    Hello:
    I would trot back into the Apple store and have them fix the problem (or call Applecare with a warranty issue).  There is no sense in you wasting your time trying to troubleshoot things on a new computer.
    Barry

  • I just got logic and need help i dont know how to make a track at all

    i just got logic and need help i dont know how to make a track at all

    Pancenter wrote:
    There was a time not too long ago when people respected the incredible amount of talent that contributed to this software...Everyone -wanted- to learn about the craft and "art" that goes into being a good engineer, musician, producer...etc.      
    Beginner's did enough reading and experimentation to at the very least, ask an intelligent question.
    pancenter-
    Hey Pancenter there are still lots of us about.
    I wouldn't take the original post too seriously - I may of course be naive but it sounds like it could be a troll to me!
    I learn a lot from reading the posts of the likes of you, Erik, Bee Jay, sampleconstruct, noeqplease etc so I hope you guys don't become too dispondent when you see posts like these.
    By the same token, I hope the Logic team continue to use their talents to develop powerful software that caters for the professional user, while allowing Garageband to continue to do its (excellent) job of providing for its market.

  • Need Query Logic Help.

    Hello, Experts.
    I am Design a Query, in that i need to do year over year comparison.
    i.e. in the report we have to show data from 2007 - 2012,
    Comparing 2007 fcst data with 2006 FCST data, 2008 fcst data with 2007 fcst like that untill 2012 data with 2011 data.
    in the Col. i have Cal.Year ( range from 2006 -2012 )
    in the Rows i have key fig Struct and i have product Family on top of the key fig struct.
    Product Family Keyfig/calyear      2007    2008  2009  2010  2011  2012
    prod A                             FCST            10        11     11      10     14    15
                          var year over year                 1        0       -1      -4     1
    Is there a way to achieve this, Please i need some suggestions and Logic help.
    sharp deep

    I Did this in one way that is...  Creating 7 FCST key fig  restricting it with Cal year -1 ,calyear  ,  Calyear +1... respectively.....  and then 6 Cal key fig  Sub
    in the Col.  i have this  Keyfig Struct.
    Res Keyfig 2006 ( Key fig FCST and Resctricted with 2006 )
    Res Keyfig 2007 ( Key fig FCST and Resctricted with 2007 )
    Res Keyfig 2008 ( Key fig FCST and Resctricted with 2008 )
    Res Keyfig 2009 ( Key fig FCST and Resctricted with 2009 )
    Res Keyfig 2010 ( Key fig FCST and Resctricted with 2010 )
    Res Keyfig 2011 ( Key fig FCST and Resctricted with 2011 )
    Res Keyfig 2012 ( Key fig FCST and Resctricted with 2012 )
    Var 2007 Cal key fig  ( Res Keyfig 2006 -Res Keyfig 2007)
    Var 2008 Cal key fig  ( Res Keyfig 2007 -Res Keyfig 2008)
    Var 2009 Cal key fig  ( Res Keyfig 2008 -Res Keyfig 2009)
    Var 2010 Cal key fig  ( Res Keyfig 2009 -Res Keyfig 2010)
    Var 2011 Cal key fig  ( Res Keyfig 2010 -Res Keyfig 2011)
    Var 2012 Cal key fig  ( Res Keyfig 2011 -Res Keyfig 2012)
    in the Row i have Product Family.
    if i add any thing like  Stat Fcst again i have to Create this many Fields ....  i am looking for some easy way/other way to achive this
    Thanks
    sharp deep

  • Apple says "logic board needs replaced" because MBP won't turn on w/o SMC reset but I think I can fix it; can you help?

    Hello,
    Less than a year after purchasing a brand new, early-2011 Macbook Pro (still covered under Extended Apple Care) and, sadly, only a week or two after finally upgrading to 8GB RAM, I returned to my notebook after taking a shower and watched it suddenly shut itself down. It has not been responsive to the power button since then (although, see below.. I think I can fix it).
    Genius Bar took one look at the visible moisture sensor you can see underneath where the RAM sits and declared it water-damaged. While I agree that either a short and/or corrosion is causing my MBP to malfunction, I don't believe it should void my warranty because the problem isn't that I spilled something on it.1
    I hope someone can give me some insight into fixing this myself. Apple says "the Logic Board needs replaced" (a common CS response, I've noticed) the water damage voids my Extended Care + that it'll be at least $1200 and several weeks. Here's the situation:
    MBP will not turn on just by pressing the power button. However, MBP consistently (every time) powers up when I do an SMC reset.
    I have it in verbose mode and it begins booting. But, it will invariably turn off without warning anywhere between 30 seconds and 8-10 minutes after powering up.
    MBP will not turn on just by pressing the power button. However, MBP consistently (every time) powers up when I do an SMC reset.
    I have it in verbose mode and it begins booting. But, it will invariably turn off without warning anywhere between 30 seconds and 5 minutes of powering up.
    Eighty percent of the time, it turns off during the pre-Xorg boot. However, I have also seen it fully boot, I log in, I'm able to peruse logfiles/etc. Safe Mode (holding shift) crashes early. Single-user mode makes no difference. PRAM/NVRAM/etc makes no difference. I can boot to the Recovery Partition but it turns off just the same (disk utility scan takes too long).
    I haven't been able to really test the Internet Recovery because the hotel wireless takes too long. I did boot into Hardware Test and it passed the basic and extended tests (although it seemed to just be testing the RAM integrity.
    I can boot from the optical drive with a FreeBSD 9 livecd and an Ubuntu 11.04 livecd. Of note is that the laptop shuts off consistently when FreeBSD begins the journaling services for the ZFS filesystem (every time).
    Here is where this leads me to believe I'm at (I am not dogmatic here and would appreciate any corrections or insight):
    It seems like there may be corrosive damage on the logic board but maybe it's isolated given the various consistencies in what's happening. It seems like whenever SATA is use, I lose power. When SATA isn't really used (the HW Test), the laptop has literally stayed on for days and days.
    I want to get in there and clean up any corrosion with 91% isopropyl alcohol (9% distilled, non-conductive water).
    I want to use a bootable OSX livecd with an "emergency console" so I can, basically, use boot options to step throught the boot process and see if I can isolate the problem.
    Here is what I'm uncertain about and could use guidance:
    Does any of this sound remotely reasonable to anyone who has been through this or am I delusional?
    Any tips on identifying and cleaning any corrosion?
    While I had made a bootable version of Lion via Disk Utility and a rescue disk with some third-party app, they are MIA and I don't have another Mac at the moment. Do I have any other options? Again, an install dvd is not exactly what I want -- more like a rescue dvd. I had read about some Apple Stores giving/copying bootable USB thumb drives like this to customers. But, I noticed that this is now on sale there for $80. I would use this like once and, ideally, could use my MBP to make more. $80 seems a bit much.
    I should be able to step through the boot process in a way like what's possible with FreeBSD, no?
    Anyone have any other specific troubleshooting tips?
    I really, reallly need my MBP back as soon as possible. I'd really appreciate any wisdom and insight! Thank you,
    -ryan                             
    To be totally honest, about 3 weeks prior I spilled some milk from cereal on the desk and a little bit got onto the battery. However, the notebook worked fine for the following weeks. I believe that the problems have been caused by ambient humidity ... I've been staying in a hotel that steams up the entire room when I take a shower. The windows are covered in water droplets so why wouldnt the MBP be affected? As noted, these problems began after I lingered in a hot shower.

    multiplryan wrote:
    To be totally honest, about 3 weeks prior I spilled some milk from cereal on the desk and a little bit got onto the battery.
    I don't think you have a case.
    You can replace the logic board yourself if you are a DIY'er and save some money.

  • MDX Logic Error when adding new Measure

    Hello,
    Im trying to create a new measure which is RMY = Remaining Months of the Year but it seems that
    there's something wrong with my MDX logic.  Can you help validate the below logic?
    Scenario:  I need to extract the values of the remaining months of a selected period. 
    Example the current view is Oct 2008, so I need to extract the values from Nov to Dec 2008.
    my current MDX logic is below:
    [Measures].[RMY] as 'iif([%ACCOUNTDIM%].CurrentMember.Properties("ACCType")="INC"OR
    [%ACCOUNTDIM%].CurrentMember.Properties("ACCType")="EXP"OR [%ACCOUNTDIM%].CurrentMember.Properties("ACCType")="AST"OR
    [%ACCOUNTDIM%].CurrentMember.Properties("ACCType")="LEQ", iif[%TIMEDIM%].[Month].Ordinal,SUM(LEADPERIODS([TIMEDIM%].Currentmember),
    [Measures].[Periodic]),MEASURES.[PEIRODIC]),MEASURES[PERIODIC])
    Please advise.
    Thanks,
    Katherine

    Hi,
    Not sure if this is a typO but I noticed the following line:
    "Measure.Periodic),MEASURES.PEIRODIC),MEASURESPERIODIC)"
    where you had spelt periodic incorrectly and a full stop is needed also after measures at the end.
    Perhaps it should read:
    Measure.Periodic),MEASURES.PERIODIC),MEASURES.PERIODIC)

  • T400 - Accidentaly formatted the disk 1 (IMD-0) partition in disk management - Help Needed

    Hello,
    Initially when I re-formatted my computer to get rid of the factory image, I found that there was a hidden partition of 1.37GB which I could not touch, meaning i could not delete. I ignored it at that time and formatted my computer and reinstalled vista business on it using the license i got from lenovo. Now after some days, I was kind of getting concerned as to what exactly was the 1.37Gb partition on my computer. I guess I was getting worried as to why I was not able to reclaim that space for normal use. Today, I tried to reclaim it, by deleting the volume, thinking it should merge into the unallocated space, that I have on my primary hard drive. But it did not. However, what happened was that this space of 1.37GB did start showing up on My Computer, once I formatted it using NTFS. I then checked its properties in My Computer and it had an option of readyboost. I selected the option which says use this disk for readyboost, and immediately in no time, the disk was full with on 68MB remaining as free space. It also has an icon of readyboost in the drive, when I double-click it. This is when I figured that this space could be on a separate physical disk. I did some research and found out that this drive or device or chip, is listed as Disk-1 in disk management and as IMD-0 under Disk Drives in Device Manager. I googled about it, and found that it was related to the turbo memory. Now, I believe that turbo memory would be a separate flash chip, which would be hardwired to function in a particular way (enabling boosting speeds), and that it would be non-accessible to users from within windows for formatting or doing anything else. Hence, I also believe that the space which I reclaimed, is existing on my primary 320GB hard drive and is used in addition to the turbo memory, as a  cache, to boost speeds. However, since I do not understand the turbo memory concept very well, I would really appreciate if someone could explain how the turbo memory works, i.e. including IMD-0 and all that. And the main help I need is on how to hide the 1.37GB partition again, and put it in a format that it was earlier in, and usable for turbo memory. At present I do not know if it is being used by turbo memory or not, but below is the current status of the turbo memory:
    1. In Device manager, under disk drives, IMD-0 shows up, and in properties it just says device type -- disk drive. Now I read somewhere that it should say NVCACHE, but it does not say that on my pc, under any tabs of the properties of IMD-0. Can someone help me putting it back there.
    2. Under Disk Management, it says Local Disk H:, 1.37GB NTFS, Healthy (Active, Primary Partition). I don't exactly remember, but I guess prior to me formatting it, it said unallocated. Help needed here too.
    3. In the Turbo memory controller, it says Windows readyboot enabled, Windows Readydrive enabled, 2GB
    and below that I have checkboxes for enabling windows readyboost and readydrive checked.
    So guys, can please anyone help me in re-hiding the 1.37GB partition and making it in the state it was before.
    Thanks a lot for your help.

    Hi Eric,
    Please refer the following HP article to expand your array , refer the TechNet article to expand your drive:
    HP Proliant Servers - How to Expand an Array and Extend the Logical Drive
    http://h20566.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/mostViewedDisplay/?javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken&javax.portlet.prp_efb5c0793523e51970c8fa22b053ce01=wsrp-navigationalState%3DdocId%253Demr_na-c03510253-1%257CdocLocale%253Den_US&javax.portlet.tpst=efb5c0793523e51970c8fa22b053ce01&sp4ts.oid=4231377&ac.admitted=1411638027623.876444892.199480143
    TechNet article:
    Extend System/Boot Volume on Windows Server 2008/ Windows Vista/Win7 Beta
    http://blogs.technet.com/b/mghazai/archive/2009/02/24/extend-system-boot-volume-on-windows-server-2008-windows-vista-win7-beta.aspx
    Extend a simple or spanned volume
    http://technet.microsoft.com/en-us/library/cc776741.aspx
    I’m glad to be of help to you!
    *** This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control
    these sites and has not tested any software or information found on these sites; therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the
    use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet. ***
    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.

  • Recording help needed

    recording help needed. I'm a beginner, imac, logic express and helix board 12 firewire.
    I have recorded my daughter voice only ok, BUT when i import audio file to track 1 as backing track and my daughter is using headphones from the helixboard to sing to she does not record to track 2 when all in enabled.
    Should her headphone come from the imac and not the helix board
    Regards
    Paul

    Check the recording channel in the channel strip.
    It must be set the same as the audio interface channel.
    cheers
    rob

  • Troubleshoting help needed:  My iMac keeps crashing and restarting with a report detail: "spinlock application timed out"  What can I do to fix this?timed out"

    Troubleshooting help needed:  My iMac keeps crashing and restarting with a notice: "Spinlock application timed out"  What can I do?

    Launch the Console 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 Console in the page that opens.
    Select the most recent panic log under System Diagnostic Reports. Post the contents — the text, please, not a screenshot. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header and body of the report, if it’s present (it may not be.) Please don't post shutdownStall, spin, or hang reports.

  • Help needed for writing query

    help needed for writing query
    i have the following tables(with data) as mentioned below
    FK*-foregin key (SUBJECTS)
    FK**-foregin key (COMBINATION)
    1)SUBJECTS(table name)     
    SUB_ID(NUMBER) SUB_CODE(VARCHAR2) SUB_NAME (VARCHAR2)
    2           02           Computer Science
    3           03           Physics
    4           04           Chemistry
    5           05           Mathematics
    7           07           Commerce
    8           08           Computer Applications
    9           09           Biology
    2)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2) SUB_ID1(NUMBER(FK*)) SUB_ID2(NUMBER(FK*)) SUB_ID3(NUMBER(FK*)) SUBJ_ID4(NUMBER(FK*))
    383           S1      9           4           2           3
    384           S2      4           2           5           3
    ---------I actually designed the ABOVE table also like this
    3) a)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2)
    383           S1
    384           S2
    b)COMBINATION_DET
    COMBDET_ID(NUMBER) COMB_ID(FK**) SUB_ID(FK*)
    1               383          9
    2               383          4
    3               383          2
    4               383          3
    5               384          4
    6               384          2          
    7               384          5
    8               384          3
    Business rule: a combination consists of a maximum of 4 subjects (must contain)
    and the user is less relevant to a COMB_NAME(name of combinations) but user need
    the subjects contained in combinations
    i need the following output
    COMB_ID COMB_NAME SUBJECT1 SUBJECT2      SUBJECT3      SUBJECT4
    383     S1     Biology Chemistry      Computer Science Physics
    384     S2     Chemistry Computer Science Mathematics Physics
    or even this is enough(what i actually needed)
    COMB_ID     subjects
    383           Biology,Chemistry,Computer Science,Physics
    384           Chemistry,Computer Science,Mathematics,Physics
    you can use any of the COMBINATION table(either (2) or (3))
    and i want to know
    1)which design is good in this case
    (i think SUB_ID1,SUB_ID2,SUB_ID3,SUB_ID4 is not a
    good method to link with same table but if 4 subjects only(and must) comes
    detail table is not neccessary )
    now i am achieving the result by program-coding in C# after getting the rows from oracle
    i am using oracle 9i (also ODP.NET)
    i want to know how can i get the result in the stored procedure itsef.
    2)how it could be designed in any other way.
    any help/suggestion is welcome
    thanks for your time --Pradeesh

    Well I forgot the table-alias, here now with:
    SELECT C.COMB_ID
    , C.COMB_NAME
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID1) AS SUBJECT_NAME1
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID2) AS SUBJECT_NAME2
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID3) AS SUBJECT_NAME3
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID4) AS SUBJECT_NAME4
    FROM COMBINATION C;
    As you need exactly 4 subjects, the columns-solution is just fine I would say.

  • Help needed I have a canon 40D. I am thinking of buying a canon 6D.But not sure that my len

    Hi all help needed I have a canon 40D. I am thinking of buying a canon 6D.
    But not sure that my lenses will work.
    I have a 170mm/ 500mm APO Sigma.
    A 10/20 ex  Sigma   HSM  IF.
    And a 180 APO Sigma Macro or do I have to scrap them and buy others.
    ALL Help will be greatly received. Yours  BRODIE

    In short, I love it. I was going to buy the 5DMark III. After playing with it for a while at my local Fry's store where they put 5DMII, 5DMIII and 6D next to each other, using the same 24-105L lens, I decided to get the 6D and pocket the different for lens later.
    I'm upgrading from the 30D. So I think you'll love it. It's a great camera. I have used 5DMII extensively before (borrowing from a close friend).
    Funny thing is at first I don't really care about the GPS and Wifi much. I thought they're just marketing-gimmick. But once you have it, it is actually really fun and helpful. For example, I can place the 6D on a long "monopod", then use the app on the phone to control the camera to get some unique perspective on some scenes. It's fun and great. GPS is also nice for travel guy like me.
    Weekend Travelers Blog | Eastern Sierra Fall Color Guide

Maybe you are looking for

  • InDesign Crashing on Mac 10.8.2 and 10.8.3

    Hello Please find the crash report here. http://pastebin.com/RuWs8cWL Updated OS but no change. There are other machines that have the same application but only this one has that problem.

  • Querry in Assembly Processing

    Hi, I have created standard WBS E-9818.Using this WBS, I have created standard Network E-9818.Then I have created material M-9818 & made assignment in CN08. After this when I try to create sales order using order type PS1, it is not creating sales or

  • ITunes shuts down my PC

    I have successfully installed iTunes on my PC and have used it both to download music and transfer music to my iPod Shuffle. However, it regularly (and without warning) shuts down my PC - as if someone has pulled the power cord out of the back. This

  • My Macbook Pro (early 2011, 10.6.8) keeps rebooting when I put it to sleep mode or turn off the display.

    When I go out for lunch, I always put my Macbook Pro either to sleep or turn off the display with Ctrl-Shift-Eject. Recently, a few times, when I returned to the computer, I find it in the login screen with all apps closed. What to do?

  • Advanced search for a price range while checking for an empty values using php in DW

    I am creating an advanced search with DW php. I would like to submit a search where some entrys can be left black. So checking for empty values (which I have managed, thank you David Powel), however when searching between multiple price ranges does n