Degree of parallelism and number of files in tablespace

Hi,
I am trying to find out the relationship between the number of files in a tablespace and degree of parallelism. does number of files in a tablespace effect dop in parallel query. because if more files are in the tablespace so the IO of the system has increased and system has become more feverable for parallel query.
However i looked into the formulas for calculating dop i dont find any parameter which specify how many file are there in a tablespace. please give me the formula of calculting dop in oracle.
regards
Nick

Maurice Muller wrote:
Did you run this test on an Exadata Storage Server? How much IO throughput did you have per process? No. That one is from a RAC cluster of DL580 G5s. There were 7 in that query, but I had 8 total. One was down at the time due to hardware failure.
The >500 DOP is from a RAC cluster of 16 DL580s (so DOP=512) to be exact.
The amount of I/O you get per slave (or talking aggregate) is dependent on what the query execution plan is. Simple things like select count(*) are very I/O intensive, but not very CPU/memory intensive. The blocks are read, counted and then discarded. A group by or hash join will be more CPU intensive and less I/O intensive. Over the course of a given query execution the use of resources will generally alternate. Heavy on I/O at first, then more CPU heavy for a hash join, etc.
How much IO throughput do you recommend per CPU(Core) for an Oracle DWH server?As a rule of thumb I size systems to have around 100MB/s of physical I/O throughput per CPU core. So for a four socket quad core DL580 G5 (16 cores) target 1600MB/s, which works out nicely to four 4Gbps FCP ports. Do note if you are using compression you will be delivering a logical I/O rate higher than the physical based on the compression ratio for the data.
With Exadata, things are a little different. Since the CPUs that do the physical I/O are not at the DB layer, no wait I/O shows up in the metrics. The db blocks are transferred to the host using iDB protocol, not FCP like most external storage.
For instance, here is a screen capture of a HP Oracle Database Machine running a single query that uses PQ
http://structureddata.org/files/life_without_waitio.png
The problem is that most storage system are, from my point of view, much to slow compared to the available CPUs performance. In most cases people don't realise that the IO throughput required for large parallel queries is not comparable with the one required for an OLTP system having >90% cache hit ratio.Very true. Also discussed here:
http://download.oracle.com/docs/cd/B28359_01/server.111/b28313/hardware.htm
Regards,
Greg Rahn
http://structureddata.org

Similar Messages

  • WebHelp and Number of Files Generated

    Hi,
    Using RH 7.0 to build our WebHelp system. Is it really
    necessary to take all the files that are outputted to the WebHelp
    folder? I am checking these into a location for engineering to pick
    up in their builds so that the context sensitive help works. I am
    not even sure what 1/2 of these files are or what they are used
    for.
    I have been reading about RoboHelp Packager for Adobe AIR,
    would this be something to look into to reduce file count?
    Thanks,
    Mary

    Hi hardlyworking
    Okay, now it is me that is confused. For starters, and just
    to clarify, I suspect MEP45 was/is creating a single WebHelp target
    with no Student/Admin stuff. Just basic WebHelp was what I was
    assuming was being discussed.
    Now on to your issue. How are you generating? Batch generate?
    Are you using a merged setup? Conditional tagging? We need more
    information to go on here.
    The bottom line here is that many folks see the swarm of
    WebHelp files and think that surely there has to be some way to put
    it on a diet and slim it down a bit. But all those files are there
    for a reason. Accommodating different browsers, different settings
    within the same browsers, different versions of the same browser,
    etc. While it would be possible to ferret out all the files that
    aren't needed for your own situation and delete them, it would have
    to be done each and every time you updated the help. From an
    efficiency standpoint, it's simply better to consider all of them
    necessary and adapt to the flow.
    Cheers... Rick

  • "Get Info" Reports an Incorrect Number of Files in a Directory

    I have a 17" MacBook Pro with OS X, 10.6.4. I've been relying upon Finder's "Get Info" to determine how many files a directory contains, and I never noticed any problems when using it. However, this afternoon I saw an anomaly with the actual number of files in a directory and what "Get Info" reported.
    I had previously created a new directory and moved 23 files to it. This morning I added three (3) more files to the directory, for a total of 26 files. This afternoon I added another five (5) files for a final total of 31 files in the directory. While Finder's "Get Info" showed that the directory had been updated this afternoon, it would not update the number of files it contains -- it still showed 26 files and the old total file size. I had to log out and log back in again for it to show me the correct file size and number of files.
    Is this normal behavior or was it a glitch in Finder? That is, can I rely upon Finder to tell me the correct number of files in a folder -- or not?
    Is there a way to force Finder to refresh itself? I looked around, but I did not see anything obvious, which is why I tried the logout/login method of refreshing it.
    Thanks,
    Bev in TX

    Welcome to Apple Discussions.
    This is a known issue in Finder. No fix I know of but a decent refresh here.
    -mj

  • Number of files in unix directory

    Hi All,
    anyone can help me, how can I get the number of files in specific unix directory and number of files in each
    sub-directory inside that directory?
    Thank You

    Hi,
    Use the following program which will list the files on a unix system.
    Put/modify the logic for getting the file count. (play around)
    REPORT ZUNIXFILES MESSAGE-ID Z1
                      NO STANDARD PAGE HEADING
                      LINE-COUNT 65
                      LINE-SIZE  132.
    Global Variables.                                                   *
    DATA: BEGIN OF TABL OCCURS 0,
              LINE(2000),
          END OF TABL.
    DATA: PARCOM_LOC LIKE RS37A-LINE.
    DATA: SIZE(10) TYPE C,
          LINE     LIKE TABL-LINE,
          SUM(16)  TYPE C.
    DATA: FILE LIKE RS37A-LINE.
    DATA: PATH(255) TYPE C.
    Parameters.                                                       *
    SELECTION-SCREEN SKIP 2.
    PARAMETERS: PARCOM LIKE RS37A-LINE.
    *AT SELECTION-SCREEN.
    AT SELECTION-SCREEN.
      CONDENSE: PARCOM NO-GAPS.
    *TOP-OF-PAGE.
    TOP-OF-PAGE.
      PERFORM WRITE_PAGE_HEADING.
    *INITIALIZATION.
    INITIALIZATION.
      PARCOM = '/usr/sap/*'.               "Only default value
    *START-OF-SELECTION.
    START-OF-SELECTION.
      PERFORM MAKE_LOC.
      PERFORM COLLECT_DATA.
      PERFORM FILE_LIST.
    *AT LINE-SELECTION.
    AT LINE-SELECTION.
      CLEAR FILE.
      FILE = SY-LISEL+55.
      REPLACE '|' WITH SPACE INTO FILE.
      IF SY-LISEL+1(1) = 'd'.
         PATH = FILE.
         PATH+200 = '/*'.
         CONDENSE PATH NO-GAPS.
         SUBMIT ZUNIXFILES
           WITH PARCOM = PATH
           AND RETURN.
      ENDIF.
      SUBMIT ZBROWSEFILE            "Call the browse program
         WITH PARCOM = FILE
         AND RETURN.
    FORM MAKE_LOC.                                                      *
    FORM MAKE_LOC.
      CLEAR: PARCOM_LOC.
      PARCOM_LOC(7)    = 'ls -ld '.
      PARCOM_LOC+7(45) = PARCOM.
    ENDFORM.
    FORM COLLECT_DATA.                                                  *
    FORM COLLECT_DATA.
      REFRESH TABL.
      CALL 'SYSTEM' ID 'COMMAND' FIELD PARCOM_LOC
                    ID 'TAB'     FIELD TABL-SYS.
    ENDFORM.
    FORM FILE_LIST.                                                   *
    FORM FILE_LIST.
      FORMAT RESET.
      CLEAR SUM.
      LOOP AT TABL.
        CLEAR LINE.
        LINE = TABL-LINE.
        WRITE /2 LINE.
        PERFORM VERTICAL_LINES.
        SUM = SUM + SIZE.
      ENDLOOP.
      WRITE:/1(132) SY-ULINE.
    ENDFORM.
    FORM WRITE_PAGE_HEADING.                                          *
    FORM WRITE_PAGE_HEADING.
      WRITE:/1(132) SY-ULINE.
      PERFORM VERTICAL_LINES.
      FORMAT INTENSIFIED.
      WRITE: /2(131) SPACE COLOR 1.
      WRITE:  2    SY-DATUM COLOR 1.
      WRITE: 35 'File Manager' COLOR 1.
      PERFORM VERTICAL_LINES.
      WRITE:/1(132) SY-ULINE.
      PERFORM VERTICAL_LINES.
      FORMAT INTENSIFIED.
      WRITE: /2(131) SPACE  COLOR 3.
      PERFORM VERTICAL_LINES.
      FORMAT RESET.
      WRITE:/1(132) SY-ULINE.
    ENDFORM.
    FORM VERTICAL_LINES.                                              *
    FORM VERTICAL_LINES.
      PERFORM WRITE_VLINE USING ' '  1.
      PERFORM WRITE_VLINE USING ' '  132.
    ENDFORM.
    WRITE_VLINE.                                                      *
    FORM WRITE_VLINE USING MODE POS.
      IF MODE NE 'T'.
        FORMAT INTENSIFIED.
      ENDIF.
      POSITION POS.
      WRITE: SY-VLINE.
      IF MODE NE 'T'.
        FORMAT RESET.
      ENDIF.
    ENDFORM.

  • Parallel and sequental parts in one file ?

    Hi,
    The situation is following: there are several units for test (which can be done in parallel), and one routine for initializing interface, which has to be runed once. If i use sequental model with subsequences for parallel tests in case of "run sequence in a new thread" i have problems with generating reports (one report for every unit had to be made), in case of "run sequence in a new execution" i have problems with passing parameters (FileGlobals is not good place for it) but better situation with reports. In Parallel Model it's not clear how to initialise _once_ interface for all units "keeping it simple".
    Any helpful ideas are wellcome (generating reports is essential part of tests).

    Not fully ,
    I need to pass parameters (channel number for example), which are _different_ for every subsequence. I am using sequental model and want to launch subsequences in "New Execution" (to get separate report for _every_ subsequence). But parameters seems to be ignored (except sequence name, 1st parameter) when "Load Prototype" button is used. When i use "New Thread" paramters are passed without any problems, but report is generated in one big file.
    I am a newbie to TestStand and I want to use TestStand as sequecer for using DLLs routines. But it seems to me that it is no use for "Batch" or "Parallel" models for bigger tests, where have to be sequental and parallel parts. Usage of this models without changes is not very comfortable. Maybe i am di
    gging in wrong direction ? Maybe someone could send me peace of working code where subsequence is called in "New Execution" and few parameters are passed to it ?
    p.s. Thanks for previous answer !

  • I just read the tutorial and did exactly what it was telling me to do, and I still can't get it done. Once I have selected the file, I get a box that pops up that says "Subscribe now to convert unlimited number of files to PDFs. Subscribe Now.  I already

    I just watched the tutorial and did exactly what it was telling me to do, and I still can't get it done. Once I have selected the file, I get a box that pops up that says "Subscribe now to convert unlimited number of files to PDFs. Subscribe Now.  I already have done this! I am a subscriber!  Arrrrhhhgggg!

    Hello Kathie,
    Please let me know what exactly are you trying to do using Adobe online service.
    You might try accessing the same service for some other PDFs and check.
    Have you signed up correctly at "https://cloud.acrobat.com/" using your Adobe ID credentials.
    If the same message pops up, then please visit Contact Customer Care as they could let you know if there is any problem with your account.
    Hope to get your response.
    regards,
    Anubha

  • I'm using acrobat pro in my project after debuging the project and after opening a certain number of PDF files I receive the message: the maximum number of files opened has been reached, you have to close some files to continu.even doing that, I steel rec

    I'm using acrobat pro in my project after debuging the project and after opening a certain number of PDF files I receive the message: the maximum number of files opened has been reached, you have to close some files to continu.even doing that, I steel receive the same message.Some one can tel what to do please? Thanks

    Hi Memalyn
    Essentially, the bare issue is that you have a 500GB hard drive with only 10GB free. That is not sufficient to run the system properly. The two options you have are to move/remove files to another location, or to install a larger hard drive (eg 2TB). Drive space has nothing to do with SMC firmware, and usually large media files are to blame.
    My first recommendation is this: download and run the free OmniDiskSweeper. This will identify the exact size of all your folders - you can drill down into the subfolders and figure out where your largest culprits are. For example, you might find that your Pictures folder contains both an iPhoto Library and copies that you've brought in from a camera but are outside the iPhoto Library structure. Or perhaps you have a lot of purchased video content in iTunes.
    If you find files that you KNOW you do not need, you can delete them. Don't delete them just because you have a backup, since if the backup fails, you will lose all your copies.
    Don't worry about "cleaners" for now - they don't save much space and can actually cause problems. Deal with the large file situation first and see how you get on.
    Let us know what you find out, and if you manage to get your space back.
    Matt

  • How does DIADEM import TDMS files? How gets every channel his number and groupindex? How can I determine which channel has which groupindex and number?

    I store different channels in a TDMS file.
    I like to have a time channel at the first position with group index 1 and number 1.
    When I read the TDMS file with DIADEM the time channel (Float64) is on a differernt position, and the channels are not sorted alphabetically.
    Here are my questions:
    How does DIADEM import TDMS files?
    How gets every channel his number and groupindex?
    How can I determine which channel has which groupindex and number?
    Best regards
    Joerg

    Hi Jörg,
    i suppose that you´re programme whose create the *.tdms file is writing on false position. Try to create datas with timechannel on first indes in diadem, then save it and then open it again. you see that all is correct. So please tell me what programm in what version do you use and please attache it here.
    Did you use the library for creating *.tdms files like in the link ?
    http://zone.ni.com/devzone/cda/tut/p/id/6471
    Here you find the gtdms_8.x.zip - when you extract it and opened the *.llb you find vi´s for all functions e.g. writing 2d array of strings to *.tdms file
    when you open the subvi´s then you see how created and writing datas/structure to *.tdms files. Because *.tdms is binary you can´t see structure with open it in editor.
    When you don´t have Labview you can use the 30 days test of current version 8.5 under following link
    german version download link
    https://lumen.ni.com/nicif/d/lveval/content.xhtml
    english version download link
    https://lumen.ni.com/nicif/us/lveval/content.xhtml
    Hope it helps
    Best Regards

  • I tried to rename a file, it gave me an error message (can't remember the number - 43??) and then the file disappeared from the original folder. When I do a search, the file comes up under the new name, but it does not show a path, and even though preview

    I tried to rename a file, it gave me an error message (can't remember the number - 43??) and then the file disappeared from the original folder. When I do a search, the file comes up under the new name, but it does not show a path, and even though preview shows the contents, I can't open the document (Powerpoint) and I can't move the document. I tried "Copy" and paste but it doesn't work. I tried "Share" with Airdrop and iChat, but the file is inaccessible. When i try to rename the file, it says the filename is too long.
    When I try to open it, it says the alias is not good, and asks if I want to fix the alias. I'm afraid to do that and lose all access to this document.
    Right now, it feels like a ghost document - it is on the computer intact, but it is in an undisclosed location and inaccessible.
    Please help!!

    I was able to resolve this by repairing permissions, even though no permissions error was listed specifically for that file.
    I could also have recovered it through Time Machine, but I'm interested in knowing how not to have this happen again!
    I was afraid of rebooting and possibly losing track even of the ghost.
    I did not try EasyFind - I'll keep that in mind next time.
    Thanks for all the comments.

  • How to backup both my MacBook air files and Windows 7 files via Parallels?

    Hi,
    I'm new to apple support........I need to purchase an external drive to backup my files from my MacBook air but I also need to backup two main programs that i use for my business on Win7 via Parallels.
    Can I use the same drive and/or time machine for both?
    Or do I need to use two different methods?
    Thanks in advance!
    Chef Heather

    Any backup utility will backup the pseudo-disk that Parallels uses just like any other file on the drive. But if you are going to do that I recommend not using Time Machine. Time Machine will backup the pseudo-disk every hour even if only one byte changed. In no time at all your backup drive will be full. I suggest you use a different utility that overwrites changed files, only.
    Suggested Backup Software
      1. Carbon Copy Cloner
      2. Get Backup
      3. Deja Vu
      4. SuperDuper!
      5. Synk Pro
      6. Tri-Backup
    Others may be found at VersionTracker or MacUpdate.
    Visit The XLab FAQs and read the FAQ on backup and restore.  Also read How to Back Up and Restore Your Files.

  • 2009 macbook pro incorrect number of file hard links. repaired and still slow. I replaced the hard drive within the year and it's 1 tb not full. help!

    I have a 2009 macbook pro and I keep it up to date. I replaced the hard drive with a new 1 tb hard drive within the last year. It is not even close to full. The other night I was doing a time machine backup and the spinning color wheel appeared. It would not go away and the only thing I could do was restart the computer. The Grey apple screen appeared and nothing else happens. I restarted in disk utility and verified the drive. It said "incorrect number of file hard links". I repaired it successfully and check the drive as well as the startup drive. All was ok. I restarted my computer and it took forever to come on. It is now one but I can not do anything. The desktop and all appropriate dock items are there but I can not do anything. What should I do?

    It's likely that the startup drive, or some other hardware component, is failing. Back up all data immediately, then run Apple Diagnostics or the Apple Hardware Test.
    Even if the test is negative, you should make a "Genius" appointment at an Apple Store to have the machine tested more thoroughly.

  • Finder issues and Get Info refusing to show the number of files on items on the main hard drive.

    I am having finder issues. Mostly on the main hard drive. It takes ages to find things and I get the spinning wheel every time I open a folder.
    So I moved all of my files to a external drive.  When I had finished transfering I hit get info on the files on the external drive and on the same folder on the main drive.  To ensure that it has copied over all the files.  Because it was acting up and not copying all the files.
    Get Info refuses to show the number of files within the folders on the main hard drive. It hasppily tells me everything on any of the external drives.
    I have reset, the imac.  I have re indexed 3 times.  I have deleted the finder plist files.  I have reset finder using terminal commands. I have moved nearly everything off the main hard drive. But nothing is working.
    Can anyone offer any suggestions as to what could be causing my finder and get info issues.
    Any help wpuld be appreciated.
    Running Mountain Lion on a late 2009 Imac

    Some of your user files (not system files) have incorrect permissions or are locked. This procedure will unlock those files and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Back up all data.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Enter the following command in the Terminal window in the same way as before (triple-click, copy, and paste):
    sudo find ~ $TMPDIR.. -exec chflags nouchg,nouappnd,noschg,nosappnd {} + -exec chown $UID {} + -exec chmod +rw {} + -exec chmod -N {} + -type d -exec chmod +x {} + 2>&-
    This time you'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button
    Select
               ▹ Restart
    from the menu bar.

  • After I run a query can I get it to return the number of files matched and each individual file name?

    After I run a query can I get it to return the number of files matched and each individual file name?  I am trying to do a data mining routine and this would be helpful. 
    BBANACKI

    Hi bbanacki,
    Please have a look at the following code:
    Define your queries and then:
    oAdvancedQuery.ReturnType=eSearchFile
    oMyDataFinder.Results.MaxCount = iMaxNumberOfReturndElements
    Call oMyDataFinder.Search(oAdvancedQuery)
    Set oMyResults  = oMyDataFinder.Results
    If oMyResults.IsIncomplete Then
      msgbox "The first " & str(oMyResults.Count) & " files found"
    Else
      msgbox str(oMyResults.Count) & "  files found"
    End If
    for iLoop = 1 to oMyResults.Count
      Cell.Text = oMyResults(iLoop).Properties("Name").Value
      Cell.Text = oMyResults(iLoop).Properties("fullpath").Value
    next
    Greetings
    Walter

  • I have an iMac which I had loaded Parallels and Windows 7.  I recently uninstalled both programs. How can I delete all related files?  Is there a program that will find related files and delete them?

    I have an iMac on which I had installed Parallels and Windows 7 so I could some of the creativity software I was used to. I recently uninstalled both Parallels and Windows. How can I clean up my hard drive by making sure stray files from those programs have all been deleted?

    If you followed these steps to uninstall Parallels (you simply drag Parallels to the Trash), that's all. Parallels is a quite clean application that does not create a lot of files in different folders.
    However, you may still have the virtual machines you created in Documents folder. If you want to remove them, open a Finder window, select Documents in the sidebar and remove the Parallels folder

  • Explain Plan - Parallel Processing Degree of 2 and CPU_Cost

    Explain Plan - Parallel Processing Degree of 2 and CPU_Cost
    When I use a hint to use parallel processing with a degree of 2
    the I/O cost seems consistently divided by (1.8) but the cpu cost
    adjustment is inconsistent(between 2.17 and 2.62).
    Any ideas on why the cpu cost varies with each table ?
    Is there a formula to adjust the cpu_cost ?
    Thanks,
    Summary:
    The i/o cost reduction is consistent (divide by 1.8)
    Table 1: 763/424 = 1.8
    Table 2: 18774/10430 = 1.8
    Table 3(not shown): 5/1.8 = 3
    But the cpu cost reduction varies:(between 2.17 and 2.62)
    Table 1: 275812018/122353500 = 2.25
    Table 2: 7924072407/3640755000 = 2.17
    Table 3(not shown): 791890/301467 = 2.62
    Example:
    Oracle Database 10.2.0.4.0
    Table 1:
    1.) Full table scan on Table 1 without parallel processing.
    EXPLAIN PLAN FOR select/*+ CPU_COSTING
    PARALLEL(table_1,1)*/
    * from table_1
    SQL> select cost,io_cost,cpu_cost from plan_table;
    IO_COST CPU_COST
    763 275812018
    2.) Process Table 1 in parallel with a degree of 2.
    EXPLAIN PLAN FOR select/*+ CPU_COSTING
    PARALLEL(table_1,2)*/
    * from table_1
    IO_COST CPU_COST
    424 122353500
    Table 2:
    3.) Full table scan on Table 2 without parallel processing.
    EXPLAIN PLAN FOR select/*+ CPU_COSTING
    PARALLEL(table_2,1)*/
    * from table_2
    IO_COST CPU_COST
    18774 7924072407
    4.) Process Table 2 in parallel with a degree of 2.
    EXPLAIN PLAN FOR select/*+ CPU_COSTING
    PARALLEL(table_2,2)*/
    * from table_2
    IO_COST CPU_COST
    10430 3640755000

    The COST value is for the benefit of the CBO; not YOU.
    What should be more important to you is the elapsed run time for the SQL

Maybe you are looking for

  • ICal not updating edited entries

    Hello: Not sure if this is an iCal issue or a MobileMe/sync issue, but the issue is affecting iCal directly. If from my iMac, I make a new entry in iCal all my devices (i.e. MobileMe, iPhone, and iPad) are updated properly. But if I edit an entry, su

  • Final invoice layout.

    My requirement as follows. The layout for the Final Invoice consist of 3 different parts: 1.     The actual Final Invoice Layout (normal or Pauschal) 2.     The u2018Rechnungsanlageu2019 Layout 3.     The Overview Sheet Layout The Final Invoice layou

  • Error installing OIM

    Hi, I have succesfully installed weblogic server,rcu,soa,database. While installing identity manager installer during step "Test JDBC Component Schema" i am getting the following error. Please help me solve this issue. SQL Test=select 1 from schema_v

  • Locking All E-Business 12.1.3 application schemas

    All: I have a situation where an auditor has come in and we have promised to lock all the E-Business 12.1.3 app schema accounts (i.e.: AR, GL, AP, etc.). Last time I did this things did not work as expected. Is this supported? I know I can change the

  • NEWB HELP! How do I write Formula for Sales Tax and Gratuity items

    Sorry for the bonehead question, but I'm not much good with spreadsheets and we're trying to find out if we can afford to get MARRIED. In numbers '08, I'm using the "new from template chooser" item called "event planner". So far, it's adapting nicely