Group by for doing 2 level of grouping

CityDescription
customerId visitId city description
1 101 201 ABC
1 102 201 ABC
1 102 201 PQR
1 401 301 XYZ
1 501 201 XYZ
2 301 201 ABC
3 601 501 ABC
We want result :-
number of same description for city given by user
1) For single a user count for same description for a city will be consider only once
Expected Result :-
city description count
201 ABC 2
201 PQR 1
201 XYZ 1
301 XYZ 1
501 ABC 1
Currently i am doing it by scaning the table twice
first group by customerId, city, description
then group by city, description
SQl :-
Select city, description, count(description) numberOfDescription
from
select customerId, city, description
from CityDescription
group by customerId, city, description
group by city, description;
is there any optimized way for the same.............
Thanks in advance

You may find help on this forum from some our experts, but this is a forum about the SQL Developer tool. Try the SQL forum.
Sue

Similar Messages

  • How to use other cols in group by which does not need grouping.

    HI,
    saleshistory table has sales record of each empoly, day wise.
    that is saleshistory has more than one record of empid in it.
    empcode is number(9,0) and empname is varchar2(200), sales number(10,5),empid is number(10,0)
    select empid, sum(sales), max(empname), max(empcode) from saleshistory
    group by empid ;
    or
    select empid, sum(sales), empname,empcode from saleshistory
    group by empid ,empname,empcode ;
    i want to find the total amout of sales done by each employee with empid,empname,empcode in select list.
    1) please tel me which method good which i should follow or is there any other good way to get it.
    yours sincerely
    Edited by: 944768 on Apr 20, 2013 5:14 AM
    Edited by: 944768 on Apr 20, 2013 5:15 AM
    Edited by: 944768 on Apr 20, 2013 5:15 AM
    Edited by: 944768 on Apr 20, 2013 5:16 AM
    Edited by: 944768 on Apr 20, 2013 5:34 AM
    Edited by: 944768 on Apr 20, 2013 7:08 AM

    Hi,
    This sounds like a job for the analytic SUM function.
    Since you didn't post CREATE TABLE and INSERT statements for your own table, I can't test with your table. I'll show how to do his using the scott.emp table instead. In scott.emp, there can any number of rows with the same job, just as in your table there can be any number of rows for the same empid.
    SELECT       job
    ,       sal
    ,       SUM (sal) OVER  (PARTITION BY  job)     AS total_sal
    FROM       scott.emp
    ORDER BY  job
    ;Output:
    JOB              SAL  TOTAL_SAL
    ANALYST         3000       6000
    ANALYST         3000       6000
    CLERK           1300       4150
    CLERK            950       4150
    CLERK            800       4150
    CLERK           1100       4150
    MANAGER         2850       8275
    MANAGER         2975       8275
    MANAGER         2450       8275
    PRESIDENT       5000       5000
    SALESMAN        1500       5600
    SALESMAN        1250       5600
    SALESMAN        1250       5600
    SALESMAN        1600       5600Most aggregate functions (like SUM) have analytic counterparts which can get the same results without collapsing the result set down to one row per group. The PARTITION BY clause of analytic functions corresponds to the GROUP BY clause used with aggregate functions.
    944768 wrote:
    ... when we used GTT in Stored proc (SP) is it necessary to truncate it at the begining of sp , if one truncate can it create any harm, as SP is used by many people at the same time.This seems to be a completely separate question. Most of your message involved grouping and the SUM function; it has nothing to do with Global Temporary Tables or stored procedures. You might have an application that uses a stored procedure and a global temporary table, and which also uses groupng and the SUM function, but that doesn't mean you hve a problem that involves all of them. If the stored procedure problem has anything to do with the grouping problem, explain it. If it is a completely separate problem, then start aompletely separate thread or it (and explain it).
    I hope this answers your question.
    If not, point out where the query above is producing the wrong reslts, and explain, using specific examples, how you get the correct results in those places.
    If you want to use your own table, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and the results you want from that data.
    Always say what version of Oracle you're using (e.g. 11.2.0.2.0).
    See the forum FAQ {message:id=9360002}

  • Criteria to be taken for N level workflow

    I am new to workflow.
    I am trying to activate n-level workflow.The criterias which I have taken is Role and the amount.
    Can I take any other critria like purchase organization,material group,location for n level workflow.
    Also please let me know which all criterais other than this can be taken into consideration for N- level workflow

    Hi
    Refer to the following links for configuring N-Level Approval Workflow.
    <u>Setting Up SAP Business Workflow</u>
    http://help.sap.com/saphelp_srm50/helpdata/en/2c/e68d406b305537e10000000a1550b0/frameset.htm
    <u>Creating the Organizational Plan</u>
    http://help.sap.com/saphelp_srm50/helpdata/en/2c/e68d406b305537e10000000a1550b0/frameset.htm
    <u>Regenerating Role Profiles</u>
    http://help.sap.com/saphelp_srm50/helpdata/en/2c/e68d406b305537e10000000a1550b0/frameset.htm
    <u>Item-Based Approval of Shopping Carts</u>
    http://help.sap.com/saphelp_srm50/helpdata/en/a3/a6a34098022a54e10000000a1550b0/frameset.htm
    <u>Strategic Sourcing</u>
    http://help.sap.com/saphelp_srm50/helpdata/en/6d/0f343e47fd6b2ee10000000a114084/frameset.htm
    <u>If the workflow is not working as expected, see SAP Note 322526 Analysis for workflow problems.</u>
    <b>Also you can use N-level Approver BADI- BBP_WFL_APPROV_BADI using SE18 to determine you own logic by coding your conditions.</b>
    Let me know incase you face any issues.
    Regards
    - Atul

  • How does schedule with RESTful API a Webi report for a group of users ("Schedule For" to "Schedule for specified users and user groups" with one or more users/groups)?

    SAB BO 4.1 SP1
    Does it have an RESTful API to schedule a Webi report with the parameter to specify a group of users ("Schedule For" to "Schedule for specified users and user groups" with one or more users/groups)?

    Hello Ricardo,
    have you try a call like this one ?
        <schedule>
          <name>"test"</name>"
          <format type=\"webi\"/>
          <destination>
            <inbox>
             <to>userId1,userId2,userId3,groupId1,groupId12</to>
            </inbox>
          </destination>
        </schedule>
    Regards
    Stephane

  • More than one summary level for a matrix with group

    Hello friends at www.oracle.com ,
    I have a report where I need to create a summary level for each row and column. In the Report wizard, it works finely, creating the summary for the 1st matrix group level.
    However, if I have some extra matrix group levels - that is, a 2nd or a 3rd level -, it seems that Reports doesn't create its summary levels.
    How can I create other summary levels at the matrix, outside the inner matrix?
    Best regards,
    Franklin Goncalves Jr.

    Hello petpandian,
    I have a little example that intends to demonstrate what I really need. Hope it is clear enough.
    (Below you can see the output I am looking for)
    ..................MONTH/YEAR
    CITY REGION 04/2005.....05/2005
    AA.....BB......$ 10,00.....$ 15,00
    ...............$ 11,00.....$ 16,00
    Totals for BB: $ 21,00.....$ 31,00
    ..................MONTH/YEAR
    CITY REGION 04/2005.....05/2005
    AA.....CC......$ 30,00.....$ 11,00
    ...............$ 40,00.....$ 15,00
    Totals for CC: $ 70,00.....$ 26,00
    Totals for AA: $ 91,00.....$ 57,00 <-- Totals separated for each region and month/year.
    As you can see, I need a matrix with group(s) around it. 1st group level is the city (AA), and I have its regions BB and CC. After showing BB values, I have BB totals for each month/year. Same applies to CC totals.
    However, I expect that these results can be showed for its outside group (in this example, CITY AA), and what I have in return is the sum of all values in a single field:
    Totals for CC: $ 70,00.....$ 26,00
    Totals for AA:.....................$148,00 <--- The sum of all totals: it's not separated as above.
    I think I should have a matrix inside a matrix, so I would have totals for each region, and totals for each city, separating by its regions and month/year.
    The only solution I found was to calculate it manually via PL/SQL and inserting it into a temporary table. However, I think it is not the ideal solution because PL/SQL instructions have to handle the totals, something that Reports should do, and that's why I need help.
    Your help will be greatly appreciated. Thanks in advance.
    Best regards,
    Franklin Goncalves Jr.

  • Mass processing Tcode for disaggregation of Prod group plan to Lower levels

    is there a TCode to mass disaggregate the sales plan to FG forecast. I am looking for 'Mass Processing' function of what MC76 can do 'Product Group by Product Group.
    Such processing should blow thro' intermediate level of Product group & then to next level which would be FERT materials.

    is there a TCode to mass disaggregate the sales plan to FG forecast. I am looking for 'Mass Processing' function of what MC76 can do 'Product Group by Product Group.
    Such processing should blow thro' intermediate level of Product group & then to next level which would be FERT materials.

  • What's the group used for when doing auth with LDAP?

    I thought searching by user is enough, just as ldapsearch does, defining Base DN, user entry's object class, etc.
    I saw in some examples, besides users, seems like something about group is also defined, such as group filter etc.
    How are these parameters are used? Is search of groups preceding users?
    Thank you!

    I hear the Arch Linux Magazine could always use some contributions, if you're inclined towards that sort of thing. I've been wanting to write an article for a while, but I've not run into anything in my Arch experience so far that's really inspired an article out of me.

  • Need for multiple ASM disk groups on a SAN with RAID5??

    Hello all,
    I've successfully installed clusterware, and ASM on a 5 node system. I'm trying to use asmca (11Gr2 on RHEL5)....to configure the disk groups.
    I have a SAN, which actually was previously used for a 10G ASM RAC setup...so, reusing the candidate volumes that ASM has found.
    I had noticed on the previous incarnation....that several disk groups had been created, for example:
    ASMCMD> ls
    DATADG/
    INDEXDG/
    LOGDG1/
    LOGDG2/
    LOGDG3/
    LOGDG4/
    RECOVERYDG/
    Now....this is all on a SAN....which basically has two pools of drives set up each in a RAID5 configuration. Pool 1 contains ASM volumes named ASM1 - ASM32. Each of these logical volumes is about 65 GB.
    Pool #2...has ASM33 - ASM48 volumes....each of which is about 16GB in size.
    I used ASM33 from pool#2...by itself to contain my cluster voting disk and OCR.
    My question is....with this type setup...would doing so many disk groups as listed above really do any good for performance? I was thinking with all of this on a SAN, which logical volumes on top of a couple sets of RAID5 disks...the divisions on the disk group level with external redundancy would do anything?
    I was thinking of starting with about half of the ASM1-ASM31 'disks'...to create one large DATADG disk group, which would house all of the database instances data, indexes....etc. I'd keep the remaining large candidate disks as needed for later growth.
    I was going to start with the pool of the smaller disks (except the 1 already dedicated to cluster needs) to basically serve as a decently sized RECOVERYDG...to house logs, flashback area...etc. It appears this pool is separate from pool #1...so, possibly some speed benefits there.
    But really...is there any need to separate the diskgroups, based on a SAN with two pools of RAID5 logical volumes?
    If so, can someone give me some ideas why...links on this info...etc.
    Thank you in advance,
    cayenne

    The best practice is to use 2 disk groups, one for data and the other for the flash/fast recovery area. There really is no need to have a disk group for each type of file, in fact the more disks in a disk group (to a point I've seen) the better for performance and space management. However, there are times when multiple disk groups are appropriate (not saying this is one of them only FYI), such as backup/recovery and life cycle management. Typically you will still get benefit from double stripping, i.e. having a SAN with RAID groups presenting multiple LUNs to ASM, and then having ASM use those LUNs in disk groups. I saw this in my own testing. Start off with a minimum of 4 LUNs per disk group, and add in pairs as this will provide optimal performance (at least it did in my testing). You should also have a set of standard LUN sizes to present to ASM so things are consistent across your enterprise, the sizing is typically done based on your database size. For example:
    300GB LUN: database > 10TB
    150GB LUN: database 1TB to 10 TB
    50GB LUN: database < 1TB
    As databases grow beyond the threshold the larger LUNs are swapped in and the previous ones are swapped out. With thin provisioning it is a little different since you only need to resize the ASM LUNs. I'd also recommend having at least 2 of each standard sized LUNs ready to go in case you need space in an emergency. Even with capacity management you never know when something just consumes space too quickly.
    ASM is all about space savings, performance, and management :-).
    Hope this helps.

  • Request for Sticky #2 - Advanced Group Policy Troubleshooting Help

    GPOMG!
    Group Policy driving you crazy? Here are some advanced troubleshooting tools (beyond RSOP, GPRESULT, etc.) that may be helpful. For first level troubleshooting, check out this link:
    http://technet.microsoft.com/en-us/library/cc787386(v=WS.10).aspx
    EVENT VIEWER (NEW & IMPROVED!)
    Event viewer in Windows 7 has more detail about Group Policy. Start your event viewer (may need to run as an admin. account). Navigate to:
    Applications and Services Logs>Microsoft>Windows>GroupPolicy>Operational
    Here you will find events that are related to Group Policy processing. You can determine how long it takes to run the various pieces of your particular GP as well as diagnostic information that can be very helpful when trying to figure out what is happening
    with GP.
    http://technet.microsoft.com/en-us/library/cc749336(WS.10).aspx
    Events 4016 and 5016 show the start and end of processing of groups of policies, including how long it took to apply each one in the end event.
    Event 5312 shows policies that will be applied, and 5317 shows policies that are explicitly filtered out.
    Events 8000 and 8001 respectively show the total processing time for computer boot and user boot GP processing, and 8006 and 8007 show the same for interim/periodic GP processing.
    GPLOGVIEW TOOL
    A similar tool is called GPLOGVIEW. You must run this from the elevated command prompt. It will produce a XML, HTML, or simple text file of the GP events for export and review. You can even do a live monitor while you run GPUPDATE /force.
    http://technet.microsoft.com/en-us/magazine/dd315424.aspx
    GPSVR/GPSVC LOG FILE
    If the normal tricks above don’t provide you with enough information, this should do it! There is a service called
    GPSVR that gives you everything you ever wanted to know about Group Policy running on your workstation. Here is how to get more information from the GPSVR service in Windows 2008/Visa/Win 7. 
    Step 1: Enable logging in the Gpsvc.log file. To enable logging in the Gpsvc.log file, follow these steps:
    Click Start, click Run, type regedit, and then click OK (might want to backup your registry first).
     Make sure that you have the folder %windir%\debug\usermode, if the usermode folder is not there, then manually create it.
    Locate and then click the following registry subkey: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion
     On the Edit menu, point to New, and then click Key.
     Type Diagnostics, and then press ENTER.
     Right-click the Diagnostics subkey, point to New, and then click DWORD Value.
     Type GPSvcDebugLevel, and then press ENTER.
     Right-click GPSvcDebugLevel, and then click Modify.
     In the Value data box, type 30002 (as hex), and then click OK.
     Exit Registry Editor.
    Reboot machine.
     At a command prompt, type the following command, and then press ENTER: gpupdate /force
     You will find the Gpsvc.log file in the following folder: %windir%\debug\usermode
    Step 2: I use Notepad ++ to analyze this log file. It can help you troubleshoot, step, by step what GP is doing as your workstation/user is getting logged in. Timing, access/permission issues, SID information and more are all included
    in this log file.
    Step 3: When you are done, change the value of HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Diagnostics|GPSvcDebugLevel to 0x00000000 to disable the debug log or else it will continue to grow.
    Charlie Newman

    Hi,
    I have posted an MST file which fixes this and other issues to the following thread here:
    http://forums.adobe.com/message/2697135#2697135
    Please post any feedback to that thread!
    Kind regards,
    Chris Hill

  • Convergence group members for invitations

    Dear all,
    we use Convergence with latest patch level. For invitations of groups and using check availability the group members are not resolved and therefore the busy/free time of group members is not displayed. Instead the group name is displayed but the group itself have not calendar.
    Is there any possibility - maybe in the config of convergence of ldap settings groups - that the individual calendars of the invited group members with showing free/busy time show up and in consequence the auto select time will work, too.
    The invitation of the group members itself works fine.
    Thanks for any help

    How are the group members defined in the LDAP entry for the group?
    With the assumption that you are using Calendar 7 with Convergence, the Calendar configuration considers the following attributes for members in an LDAP group:
    <tt>
    davcore.ldapattr.dngroupmember=uniquemember
    davcore.ldapattr.urlgroupmember=memberurl
    davcore.ldapattr.mailgroupmember=mgrprfc822mailmember
    </tt>
    Only <tt>uniqueMember</tt> is considered for ACL checking, along with invitation and free/busy scheduling.
    The <tt>mgrprfc822mailmember</tt> attribute is taken into account only when inviting the group.
    This is because, when doing the ACL check, we are relying on the LDAP Directory to provide us with the <tt>isMemberOf</tt> attribute directly on the logged in user LDAP entry (as opposed to looking at all the members of the group). The <tt>isMemberOf</tt> operational attribute is itself derived from the <tt>uniqueMember</tt> attribute only.
    Doing a group expansion for ACL purposes would be too expensive an operation.
    As a side note, we also check for dynamic group membership through the <tt>memberurl</tt> LDAP attribute of the group, both for scheduling and ACL purposes.
    Reference KM Doc:
    Calendar 7: Allowing Members Of A Migrated LDAP Group To Subscribe To Calendars (Doc ID 1483916.1)
    -Deb

  • My interface -- buttons (back, forward, reload), firefox tab, groups, etc. -- does not look like the sample on your "firefox features" page. ("Groups" seems not to function at all.) I'm running the current firefox 4 download on Windows XP. Can you help?

    My interface -- buttons (back, forward, reload), firefox tab, groups, etc. -- does not look like the sample on your "firefox features" page. ("Groups" seems not to function at all.) I'm running the current firefox 4 download on Windows XP. Can you help?

    cor-el
    Thank you for your swift reply. I don't know that this has helped me, as I've reached my level of tolerance for fooling with this annoying little problem - for today anyway. It has been going on since I "up" graded to Firefox 4. My wife is running 3.6.x on her laptop with none of this foolishness. As BLASPHEMOUS as it may sound, I've gone back to IE for the time being even though I don't like it 1000th as much as I do Firefox.
    Not just to rant here, I would say that I found a way to put some buttons on the right side of the toolbar that immediately gave me permission to "back, forward, and reload", but upon closing the browser and going out for dinner with the wife, I find on return that not only are those buttons NOT still on the toolbar, but I can't find them anymore. I think they were in "add-ons" found under I believe Add-On Manager.
    I did also manage to achieve back/forward functionality running Firefox in SAFE mode, but this meant no No-Script, among other things, and I've grown too fond of that particular little script to give it up.
    I've rebooted, restored, and reinstalled, can't get this formerly completely reliable program to work like it always has. Before looking around on here, I was beginning to think it was my PC.
    THANK YOU FOR YOUR HELP, cor-el. I'm going to see if I can get on live chat on Monday.
    bossman344

  • Configuring group policy for user profiles in Windows Server 2012 R2 Domain

    Requesting some experts advise on configuring group policy for user profiles.
    We will be building new Windows Server 2012 R2 Domain Controllers (Domain of 400 users).
    The settings which I am concerned:
    1. Folder Redirection: Desktop, Documents, Favorites.
    2. Quota for Folder Redirection - 1 GB per user.
    3. Map a networked drive - 1 GB per user.
    4. Roaming profile - (Will ignore if it does not suit our requirement). 
    The question is how outlook profile will be retained / automatically moved if the users move from once computer to other?
    FYI, E-mails hosted on MS Office365 and OST file size of few users more than 25GB. So, in case the user moves from one computer to other, the entire mailbox will be downloaded via internet. This consumes high bandwidth if more than 3-4 users shift per day.
    Thanks a lot for your valuable time and efforts.

    Hi,
    >>The question is how outlook profile will be retained / automatically moved if the users move from once computer to other?
    This depends on where our outlook data files are stored. If these data files are stored under
    drive:\Users\<username>\AppData\Local, then these files can’t be redirected, for folder redirection can’t redirect appdata local or locallow.
    However, regarding your question, we can refer to the following thread to find the solution.
    Roam outlook profiles without roaming profiles
    http://social.technet.microsoft.com/Forums/office/en-US/3908b8e0-8f44-4a34-8eb5-5a024df3463e/roam-outlook-profiles-without-roaming-profiles
    In addition, regarding how to configure folder redirection, the following article can be referred to for more information.
    Configuring Folder Redirection
    http://technet.microsoft.com/library/cc786749.aspx
    Hope it helps.
    Best regards,
    Frank Shen

  • Can I deploy 2 computer GPO for 2 different Security Groups to the same machine?

    Hi
    this is my scenario
    I have 2 different security group ( in a domain ) and i would like to deploy 2 different Computer GPO depends by the user SG membership
    this is a terminal server ( 2k12) and I would like  have the computer GPO policy/admin template/windows components/remote desktop session host/profile different for each security group.
    thanks
    Marco

    > I have 2 different security group ( in a domain ) and i would like to
    > deploy 2 different Computer GPO depends by the user SG membership
    Not really, but for some settings there is a workaround... ->
    http://evilgpo.blogspot.de/2012/03/how-to-save-my-screen.html
    > this is a terminal server ( 2k12) and I would like  have the computer
    > GPO policy/admin template/windows components/remote desktop session
    > host/profile different for each security group.
    For THIS setting, it definitely does NOT work. The profile path must be
    known BEFORE the user is logged on and this means BEFORE any user
    specific settings can be processed.
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • To restrict a object to a particular Group at the Universe level

    Hi,
    I have a object which should be restricted only to a particular group at the universe level.So when i define the universe we have to have explicit security that will restrict access to this object information from reports and from ad-hoc queries.I should restrict the object only to the particular group by a role based security.
    Please help me out in this case.
    Thanks in advance,
    Madan

    Hi Madan,
    Please follow the below steps:
    (In Designer)
    1) Open Island Resort Marketing universe or any universe in Designer.
    2) Goto Tools -> Manage security -> Manage Access Restrictions.
    3) Click on New option - > Give the Restriction name - >click on Rows tab - > Click on Add button (New Row Restriction window comes) -> give table name For example:"Resort_Country" in the Table text box, under the Where Clause "Resort_Country.COUNTRY = @Prompt ('Which country?u2019,u2019 A',, MONO,FREE)"-> Click OK -> Click Ok.
    4) Click on Add user or group - >Select the user ->Ok.
    5) Click on Apply -> Click OK.
    6) Save the universe and export it into the repository.
    7) Cretae the new report (webi/deski) from the user the one who belongs from this group.
    Hope above steps will helps you.
    Regards,
    Deepti Bajpai

  • Looking for app to create Desktop groups/fences for OSX

    Looking for app to create Desktop groups/fences for OSX..
    I do music and like to keep my most important folders on my Desktop since I access them very frequently.. I saw that there's a few options out there like "Desktop Groups Lite" (link below):
    https://itunes.apple.com/us/app/id561422617?mt=12
    The only problem is that I'm reading a lot of reviews on it from users who are saying that their files/folders are going completely missing, etc.. And that's a big issue that I'm not ready to deal with, considering the importance of these folders to my work/career..
    ^This is a picture of what that "Desktop Groups Lite" app looks like.. and is pretty much EXACTLY what I'm looking for.. but I'm a little bit afraid of it "eating" my contents and losing them forever..
    Does anybody have any recommendations or feedback for an app that can accomplish something like this?
    Thanks!

    Looking for app to create Desktop groups/fences for OSX..
    I do music and like to keep my most important folders on my Desktop since I access them very frequently.. I saw that there's a few options out there like "Desktop Groups Lite" (link below):
    https://itunes.apple.com/us/app/id561422617?mt=12
    The only problem is that I'm reading a lot of reviews on it from users who are saying that their files/folders are going completely missing, etc.. And that's a big issue that I'm not ready to deal with, considering the importance of these folders to my work/career..
    ^This is a picture of what that "Desktop Groups Lite" app looks like.. and is pretty much EXACTLY what I'm looking for.. but I'm a little bit afraid of it "eating" my contents and losing them forever..
    Does anybody have any recommendations or feedback for an app that can accomplish something like this?
    Thanks!

Maybe you are looking for

  • Templates fails to upload

    I am getting an error while uploading a template. In the message console I am getting this error Job Construction Phase begin() Appended operation 'Import Virtual Machine Template' to object 'cfgFile_0004fb00001400005c33cf92650cd43f'. Appended operat

  • Global MIME type settings in JDS

    I've recently started working with JDS on Solaris 10. I want to create global MIME settings so that any user that logs in will have the same file associations. I've gone through all the info from the GNOME website regarding update/changing the MIME d

  • Troubles with examples opening

    I have installed the LabVIEW 7.0. After that, when I'm opening the NI Example Finder by means of Help>Find Examples- , I see the massage window: "The NI ServiceLocator is not running. You will not be able to browse by Directory Structure". And than i

  • Has been saving project for hours

    Instead of saving after a few changes in iMovie 6, I probably did 50 changes of clips, music, etc. and it is still saving thumbnails after 3-4 hours. Can I force quit & pray, or should I still wait? Thanks, George

  • AR Credit Memo using DTW

    Is there a way to import AR credit memos using DTW?  I can't find any templates in DTW for it.