Confusion about number datatype size

I created following table, in which i determined the size of field 100.
As I have study in a book it is given that range of ora number dt is 84 to 127, but here it doesn't work and it yield following error number ORA-012727._
I am unable to understand why it does show that err no.
Thanks in-advance.
Niks

user8863554 wrote:
I created following table, in which i determined the size of field 100.
As I have study in a book it is given that range of ora number dt is 84 to 127, Could you share the reference here?
but here it doesn't work and it yield following error number ORA-012727._I can't find this error number in Oracle error list. If you meant ORA-12727, then
ORA-12727: invalid back reference in regular expression
Cause:      A back references was found before a sub-expression.
Action:      Ensure a valid sub-expression is being referenced.
You might want to post what you did exactly.

Similar Messages

  • Ovi Suite SMS to Contacts and confusion about numb...

    Hi,
    I'm really confused here...
    I have a E72 which I sync with a exchange server (Contacts, calendar and mail).
    The sync part seems to work fine.
    However, I would also like to sync Notes and have the ability to SMS from my computer. That's where I thought Ovi Suite came into the picture but I'm having some problems:
    When sending SMS from Ovi Suite: I enter name of the contact the name appears with a preview of the phone number in the format "070-783XXXX", when I try to send it says invalid format so I need to enter the number manually in the format "070783XXXX" to be able to send the SMS
    When I update a contact in Outlook, the contact is updated in phone, but not in Ovi Suite
    When I use outlook number formats (specifying country, area code etc) the number appears as "+46 (070) 783XXXX", but then number recognition doesn't seem to work on incoming calls. 
    What I want to accomplish and wonder if it is at all possible is:
    Manage my contacts, calendar and mail in Outlook. Sync through MfE
    Reach my contacts from Ovi Suite to be able to send SMS to them
    Use Ovi Suite to manage Map files, Music, and other phone files.
    Use Ovi Suite to Sync Notes from Outlook.
    I'm I on the right track here? Any suggestions for a better way of managing contacts and having the functionality I've described?
    Solved!
    Go to Solution.

    Hey,
    Similar 2 /t5/Nokia-Ovi-Suite/Nokia-Ovi-Suite-2-1-0-87-doesn-t-accept-XX-YY-ZZZZZ-phone/td-p/643721
    If my post helped you, click on Kudos button and if my solution provided is opt 2 u, accpt my solution

  • Very confused about ppi, resolution, and image size...

    I have read so much on these things and even posted along these lines here and there, but remain totally confused.
    Say the size of my pictures is around 2000 x 3000. Once I download them to PSE, the resolution is 72ppi. Is this default and could I/should I change this?
    I generally do four things with my pictures.
    First I edit them.
    Next I email to family members.
    Then I order prints (99% are 5x7 or smaller)
    Finally I store them (on computer with CD backup).
    Now, space is a bigger concern than quality since I print small prints generally. So what would be my best options for saving my files, but getting very nice prints?
    Right now, once I edit, I save my files in .jpg, baseline "optimized" at 72ppi. Only following the computer defaults though, not because I think this is best. Would I be better off saving in TIFF or is this not necessary?
    Any links with further info would be appreciated also.
    Thank you,
    Amy

    Amy,
    1. I just took a picture today, and when I look in Image>resize>image size the dimensions are as follows:
    W=2288px H=1712px W=31.778" H=23.778" @72px/in. resolution
    When I change resolution to 325 px/in., W=7.04" H=5.268"
    As the resolution is increased, the dimensions decrease. This is what is called an inverse relation.
    Why did I change to 325px/in? Because for printing it is desirable to have a resolution of 240-300 px/in, or so. Also, note that this resolution gives me almost a perfect 5x7 size format, and one can crop off the excess readily. If one desires 4x6 size, one can crop to that dimension.
    2. I enhance the pictures next, leaving sharpening for the last step
    3. I save primarily in PSD and/or JPEG. Both PSD and TIFF allow one to retain layers, are lossless, and thus one avoids degradation with sequential editing. JPEG is is a compression format which conserves disk space (in comparison to PSD and TIFF), and is most likely required for your e-mail and your photo finisher. I save some of the JPEG files. I usually elect baseline optimized, and the JPEG allows me to elect quality 8, which is good for my purpose and results in a manageable file size.
    4. Right after I download my picture files from the camera, I burn them to a CD (i.e. before I do anything else), and right after I finish the final edits I burn them to CD as well. This is my "film", if you will. If the computer fails or if I should accidentally delete a file from disk, I still have it available.
    I am sure that others will post, but that is my current work flow.
    Ken

  • How to convert number datatype to raw datatype for use in data warehouse?

    I am picking up the work of another grad student who assembled the initial data for a data warehouse, mapped out a dimensional dw and then created then initial fact and dimension tables. I am using oracle enterprise 11gR2. The student was new to oracle and used datatypes of NUMBER (without a length - defaulting to number(38) for dimension keys. The dw has 1 fact table and about 20 dimension tables at this point.
    Before refining the dw further, I have to translate all these dimension tables and convert all columns of Number and Number(n) (where n=1-38) to raw datatype with a length. The goal is to compact the size of the dw database significantly. With only a few exceptions every number column is a dimension key or attribute.
    The entire dw db is now sitting in a datapump dmp file. this has to be imported to the db instance and then somehow converted so all occurrences of a number datatype into raw datatypes. BTW, there are other datatypes present such as varchar2 and date.
    I discovered that datapump cannot convert number to raw in an import or export, so the instance tables once loaded using impdp will be the starting point.
    I found there is a utl_raw package delivered with oracle to facilitate using the raw datatype. This has a numbertoraw function. Never used it and am unsure how to incorporate this in the table conversions. I also hope to use OWB capabilities at some point but I have never used it and only know that it has a lot of analytical capabilities. As a preliminary step I have done partial imports and determined the max length of every number column so I can alter the present schema number columns tp be an apporpriate max length for each column in each table.
    Right now I am not sure what the next step is. Any suggestions for the data conversion steps would be appreciated.

    Hi there,
    The post about "Convert Numbers" might help in your case. You might also interested in "Anydata cast" or transformations.
    Thanks,

  • Confused about extending the Sprite class

    Howdy --
    I'm learning object oriented programming with ActionScript and am confused about the Sprite class and OO in general.
    My understanding is that the Sprite class allows you to group a set of objects together so that you can manipulate all of the objects simultaneously.
    I've been exploring the Open Flash Chart code and notice that the main class extends the Sprite class:
    public class Base extends Sprite {
    What does this enable you to do?
    Also, on a related note, how do I draw, say, a line once I've extended it?
    Without extending Sprite I could write:
    var graphContainer:Sprite = new Sprite();
    var newLine:Graphics = graphContainer.graphics;
    And it would work fine. Once I extend the Sprite class, I'm lost. How do I modify that code so that it still draws a line? I tried:
    var newLine:Graphics = this.graphics;
    My understanding is that since I'm extending the Sprite class, I should still be able to call its graphics method (or property? I have no idea). But, it yells at me, saying "1046: Type was not found or was not a compile-time constant: Graphics.

    Thanks -- that helped get rid of the error, I really appreciate it.
    Alas, I am still confused about the extended Sprite class.
    Here's my code so far. I want to draw an x-axis:
    package charts {
        import flash.display.Sprite;
        import flash.display.Graphics;
        public class Chart extends Sprite {
            // Attributes
            public var chartName:String;
            // Constructor
            public function Chart(width:Number, height:Number) {
                this.width = width;
                this.height = height;
            // Methods
            public function render() {
                drawAxis();
            public function drawAxis() {
                var newLine:Graphics = this.graphics;
                newLine.lineStyle(1, 0x000000);
                newLine.moveTo(0, 100);
                newLine.lineTo(100, 100);
    I instantiate Chart by saying var myChart:Chart = new Chart(); then I say myChart.render(); hoping that it will draw the axis, but nothing happens.
    I know I need the addChild method somewhere in here but I can't figure out where or what the parameter is, which goes back to my confusion regarding the extended Sprite class.
    I'll get this eventually =)

  • Confused about standby redo log groups

    hi masters,
    i am little bit confuse about creating redo log group for standby database,as per document number of standby redo group depends on following equation.
    (maximum number of logfiles for each thread + 1) * maximum number of threads
    but i dont know where to fing threads? actually i would like to know about thread in deep.
    how to find current thread?
    thanks and regards
    VD

    is it really possible that we can install standby and primary on same host??
    yes its possible and i have done it many times within the same machine.
    For yours confusion about spfile ,i agree document recommend you to use spfile which is for DG broker handling if you go with DG borker in future only.
    There is no concern spfile using is an integral step for primary and standby database implementation you can go with pfile but good is use spfile.Anyhow you always keep pfile on that basis you created spfile,i said you make an entry within pfile then mount yours standby database with this pfile or you can create spfile from this pfile after adding these parameter within pfile,i said cause you might be adding this parmeter from SQL prompt.
    1. logs are not getting transfered(even i configure listener using net manager)
    2.logs are not getting archived at standby diectory.
    3.'ALTER DATABASE RECOVER MANAGED STANDBY DATABASE DISCONNECT FROM SESSION' NEVER COMPLETE ITS RECOVERY
    4. when tried to open database it always note it 'always' said system datafile is not from sufficiently old backup.
    5.i tried 'alter database recover managed standby database camncel' also.Read yours alert log file and paste the latest log here..
    Khurram

  • Confused about mpls mtu command

    hi,
    i confuse about mpls mtu command
    test platforms are 76 pfc3b,mpls,gigabit sip400 spa interface
    if i didn't config mpls mtu command ,using default,ping command is successful,if more than 1496 packets, i can see fragment from show ip traffic.
    if i config mpls mtu override 1504,ping command is sucessful too. there is fragment too when i use 1501 byte packet.
    if i config mpls mtu override 1524 byte.
    ping command failed if i use packet more than 1500, , all packet are droped,even 1501 byte.only 1500 byte packet can success.
    all config above interface mtu is 1500.
    this confused me.
    why i use default 1500 interace mtu, mpls mtu override 1504 ,ping packet can fragment,ping success, but i use mpls mtu override 1524, i can see fragment in show ip traffic,but ping command failed. i can't see packet in destination router,how this work.
    thank you!
    jun

    topology is simple
    7609-1--sip GE spa----7609-2--pos---7609-3--flexwan E1-----7604-1--ge--ce
    i config mpls mtu 1524 between 7609-1 and 7609-2 . and keep interface mtu 1500 default.
    ping packet from 7609-1 to 7604-1 loopback 0.
    ping 1500 byte packet is ok, but ping 1501 byte packet is totally lost.then i config mtu 1524 between 7604-1 and 7609-3, it is useless,notwork, i can't see packet coming from 7609-1 on 7604-1.
    but i add config mtu 1524 between 7609-1 and 7609-2. config mtu 1500 between 7604-1 and 7609-3,ping 1501 bytes from 7609-1 to 7604-1 loopback0 is ok. but i can see fragment from show ip traffic command in 7609-3.
    i have a question, why we need mpls mtu command. if we don't change interface mtu,just only config mpls mtu 1524, it doesn't work, if we just change mpls mtu,how it work in the ios. if we config interface mtu 1524,interface mtu size is big enough, it seems mpls mtu command is useless, we don't need mpls mtu command, just interface mtu 1524 is ok.
    why we need mpls mtu command. we just only change interface mtu is enough.
    thank you!
    jun

  • PE9 get confused about displaying images

    Been using PE9 for a few weeks and within the past couple of days it seems to get confused about which image should be displayed within the timeline. Have a medium size project with 30-40 jpg's in it and when shown in the timeline (or in the monitor window), PE9 replaces the image associated with a particular file with an image from another file. In the Project list you can get Properties and the path\file name shows up perfectly but PE9 uses the image from another file. Tried closing the project, and PE9 - no help. Tried re-booting Windows 7 (64 bit) - nop help. This seems to get worse as time goes on and I have not been able to find a solution.
    Bob

    My photo's are either 720 x 480 or 720 x 1080 depending on whether they are landscape or portrait.

  • Using number datatype for date column

    Hi
    Is there a side effect for using "number" datatype for "date" column?
    If so, what is the disadvantage?
    Many thanks

    Hi,
    Ora_83 wrote:
    Hi
    Is there a side effect for using "number" datatype for "date" column?
    If so, what is the disadvantage?Yes, there's a definite disadvantage.
    Oracle provides date arithmetic and a number of functions for manipulating DATEs. None of them work with numbers.
    For example,
    SELECT    TRUNC (order_date, 'MONTH')     AS order_month
    ,       AVG (ship_date - order_date)     AS avg_delay
    FROM       orders
    GROUP BY  TRUNC (order_date, 'MONTH')
    ;order_month involves a DATE function; it's pretty easy to find the month that conatins order_date.
    avg_delay involves date arithmetic. It's extrememly easy to find how much the time passed between order_date and ship_date.
    Depending on how you code dates as numbers, doing either one of the above may be just as easy, but doing the other will be very difficult. You'll waste a lot of effort converting the NUMBERs to real DATEs whenever you need to manipulate them.
    Validation can be very difficult for NUMBERs, also.
    Watch this forum. It's a rare day when there's not some question about how to get around a problem caused by storing dates in a NUMBER (or VARCHAR2) column. Don't add to that. Always use DATE columns for dates.

  • Confusion about TreeMap

    Hi,
    I'm currently studying for SCJP exam and am confused about the following code.
         public static void main(String[] args) {
         TreeMap myMap = new TreeMap();
         myMap.put("ab", 10);
         myMap.put("cd", 5);
         myMap.put("ca", 30);
         myMap.put("az",20);
         NavigableMap myMap2 = myMap.headMap("cd", true);
         myMap.put("bl",100);
         myMap.put("hi",100);
         myMap2.put("bi", 100);
         System.out.println(myMap.size() + " " + myMap2.size());
         }When I run it, it outputs 7 6.
    What I'm confused about is how when after the line NavigableMap myMap2 = myMap.headMap("cd", true);and values are being entered into the myMap object, that it is still possible for them to be entered in the NavigableMap object? Are the 2 entities not seen seperately? Is it to do with the "inclusive" field of the headMap method.
    The solution states that the myMap contains the objects "ab","cd","ca","az","b1","h1","bi"
    and myMap2 "ab","cd","ca","az","b1","bi".
    But how when adding key-value pairs do both objects (myMap,myMap2) get considered for putting into?
    Thanks.

    From the API:
    headMap
    public NavigableMap<K,V> headMap(K toKey,
    boolean inclusive)
    Description copied from interface: NavigableMap
    Returns a view of the portion of this map whose keys are less than (or equal to, if inclusive is true) toKey. The returned map is backed by this map, so changes in the returned map are reflected in this map, and vice-versa. The returned map >supports all optional map operations that this map supports. So myMap2 contains all the elements from myMap that are <= "cd" (which are all except "hi"), and changes in either map are reflected on both, as stated.

  • Confused about color vs. b/w photos for printing...and more

    I reading confusing things about exporting a PDF for printing with both color and black and white images used in the same document.
    If I export to PDF and do a soft-proof and it looks okay, is that sufficient? If so, what's confusing about that, since this is my first print project, which Simulation Profile do I use? Is there a chart somewhere that compares U.S. Web Coated (SWOP) v2 to let's say 80 lb Gloss book with Aqueous coating (C2S)?
    I don't know what any of this means. So, is there a good article on this site, elsewhere, or an online printer who can help a rookie like me ensure I end up with a decent product?
    UPrinting.com advertises a "Free Project Review" that includes the following:
    Our team will run your file through a 30-point inspection, covering technical issues including:
    Artwork dimensions
    Bleed setup
    Low resolution images
    Elements that are not within the safe zone
    Image clipping
    Font sizes
    Un-embedded fonts
    Folding setup
    Page scaling
    Line weights
    Proper text spacing (compressed/expanded)
    Narrow borders that are at risk of being cut
    Compliance with USPS Mailing Guidelines
    Bindery setup for multi-page artwork
    What should I do? Is this trustworthy as long as I get a contract proof? Is there a "Go To" online printer that everyone loves (not sure you can recommend that here) or should I seek out a local printer?
    I'm using CS4 and have a file that's (maybe) ready to go but am looking at a learning curve of days if not weeks if I have to figure it all out myself.
    Thanks everyone.
    Paul

    InDesign puts grayscale and B&W (bitmap mode) art on the Black plate, where it belongs, so if you soft proof using the CMYK profile for your expected output conditions your preview will be accurate for the grayscale and B&W images as they will appear in print. presuming your monitor is calibrated and profiled so that you can trust what you see.
    Aqueous coating is applied AFTER the printing to protect, and possible enhance the glossiness of, the page (but not all coatings are glossy). This is not the same thing as printing on coated paper, which has a glossy surface and high ink holdout (and improves detail reproduction and usually will geive better color). You should be using whatever profile the printer has specified.

  • Confused about conflicting disk guidelines

    This is my first time on the forum and I am learning a tremendous amount - thanks everyone.  I am planning a machine with 3 disks and I'm a little confused about apparently conflicting guidellines issued by Harm.  In the "Storage rules for an editing rig", he states in Rule 4 that "If you have OS & programs on disk C:, set your pagefile on another disk".  However, in the "Guidelines  for disk disk storage", he says that, for 3 disks, that the OS, programs and pagefile should be on drive C:    Which is right?  Thanks

    You may be somewhat confused, as it appears to be contradictory, but let me try to explain.
    The basic rule for a fast disk system is to spread the load across as many disks as you have.
    Every disk can access only one location at a time, and if a program requires access to a number of files, it would be great to have all those files on different disks, because then all these files can be accessed in parallel, making it much faster than in a serial way. There are however practical limitations to doing it that way. It does not make sense to organize the location of your clips in such a way that all these clips are on different disks, your potential gains would be far outweighed by the effort to move your clips to different disks. It does not even make sense to allocate a different disk for different tracks, although from a disk performance view it may make a lot of sense.
    It has to make sense from a workflow view as well, so you have to compromise and try to follow a 'KISS' approach. As you can see from the Generic Guideline, the allocation of the pagefile can change, depending on the number of disks in the system. The reasoning behind it is to spread the load as much as possible but keep it as simple as possible from an organizational point of view.
    Remember, it is only a guideline, not a strict rule. Consider for instance a situation where a lot of stock footage is used in nearly all projects. It makes sense to put all this stock footage on a different disk than your normal clips, if you also add a lot of music to your projects, it makes sense to use a separate disk for your music files, because you spread access load across different disks and still keep it relatively simple to organize. Now, if this does not happen often and only for very limited parts of the timeline, this may not be worth the effort or the dedicated disks. So, the guideline is exactly that and can be influenced by your specific workflow and material. Someone may want to have all his HDV captures on one disk and all his AVCHD imports on another disk and maybe from a third camera on a third disk, thereby improving multicam performance.
    Hope this clears it up a bit.

  • Confusion about Master data text

    Hello all, I am little bit confused about the modelling concept in BI7. My confusion is about the Text table creation and its concepts.
    I got a Flat File data in my PC .Here is the scenario:
    Material Num, Material Name,  Material Description
                1111,       Desk ,               Dining table
    Material Name and Material Description are the Attributes of Materaial Number here. When i created Infoobjects Material Number , Material Name (Attribute). I can see that system created a Text table with Short descripton and Language key selected. I understand that i have to load master data and text separately. My question is How did that "short text exists" box got changed?
    In my case "Material Description" is showing Text data "dining table" correct? do i have to create this material description Infoobject as an attributes of Material Num, and later on load this as Text data to it?
    Could anyone tell me how Text data /table come in to play in this example?  Under data/texts tab i see that "language dependent" and "short description" are checked. why "long text exist" and "med text" are not ticked? AFter clicking this T table i know its empty at this point, but is this table waiting for the data to be loaded from "Material Description" Field? if anyone could clarify this confusion i will really appreciat it..thanks
    DK

    Hi DK,
    When you create a characteristic, by default 'With Master Data' & 'With Text' option would be checked.
    We need to manually un-check this if the characteristic created by us is not master or doesn't have text.
    Also, by default 'Short Text Exists' is checked. Short Text can hold description upto 20 chars,
    Medium Text - 40 Chars & Long Text - 60 Chars. Depending on the length of the maximum possible length of description that could come from our source, we need to check the appropriate Texts.
    And you need not create a separate InfoObject for 'MAterial Description'.
    While loading the texts (using Text Transformation & DTP), you can map the Material Description to '0TXTSH' (InfoObject for Short Text).
    Hope this helps!
    Meera

  • How do I eject (or get out somehow) a mini cd I slid into my MacBook Pro CD slot (rather stupidly not thinking about its small size not being a good fit)?

    How do I eject (or get out somehow) a mini cd (3" size) which I slid into my MacBook Pro's CD slot? (Rather stupidly, I admit, not thinking about its small size keeping it from being a good fit.) And of course, it didn't seat on the cd's spindle, and thus is not being "seen" by the computer as being present when I press the eject button, so nothing happens. Because the CD slot has a membrane covering the slot, I can't see in to locate where it is or to try and slip it out manually, either.
    Details about my computer, although I don't know that these are needed, are as follows:
      Model Name:    MacBook Pro
      Model Identifier:    MacBookPro8,1
      Processor Name:    Intel Core i5
      Processor Speed:    2.3 GHz
      Number of Processors:    1
      Total Number of Cores:    2
      L2 Cache (per Core):    256 KB
      L3 Cache:    3 MB
      Memory:    4 GB
      Boot ROM Version:    MBP81.0047.B27

    Thanks for your suggestion, although it didn't work for me. The one that did suggested inserting a sticky note - sticky side down to catch the disk - and slowly pulling it out. I was dubious, but it worked just like magic!

  • Confused about cpu information here can you help plz

    if you look below at this link
    http://www.tigerdirect.com/applications/searchtools/item-details.asp?EdpNo=579850&Sku=CP1-P430008NC&SRCCODE=PRICEGRABBER
    Manufacturer Part No: BX80532PG3000D is right here but now look at this website below
    http://www.pricegrabber.com/search_getprod.php/masterid=779130/search=intel%2520pentium%25204/ut=c723210b9e568565
    the manufaturing number are the same but if you read the info on the first link it says 3.6Ghz and the seconed link says 3.0Ghz now is there a BIG (_*_) Mistake or are the company TigerDirect being too specific causing me to be insane lol huh ? Please help me I am trying to get a 3.2Ghz chip egzactley the same as in link 2 but 3.2Ghz not 3.0Ghz are they out yet?
    Please help Thank You very much :P

    I am so happy that I am an MSI guy here at this lovely forum I mean you all helped me so much and you did not have to but I do apreesheate it a lot from you guys I do know that I will be tossing plenty of money in to this chip but the reason why it so high at tigerdirect is because you are paying for there name brand and there product but I love shoping at there store because they are always polite there over the phone and I always get there best service there so I don't mind paying an extra few hundread dollors for there stuff.
    The reason for tossing so much money into this machine is no im not rich we or shall I say I am avrage I have a good job and still live with my parants so I have no utility bills to pay except insurance for my car every month but other then that I can save up quickley if I manage my money the right way hehe. But anywho I paid for the new from soyo SY-P4i875P Dragon2 Platinum Edition Motherboard capable of 3.02Ghz and will have a 3.00Ghz in it with HT   I bought it from http://www.Outpost.com/ witch I did love there service all around but if you pay by check be prepared to wait for 2 weeks lol god lee don't they know wow to torture there customers hehe so plz use money orders hehe but they sent it airborne express I belive thats what it is called correct me if im wrong. and that was quick hehe and also they make sure the person gets it too by having me sign for the package hehe I love how that works.
    I guess you guys are like havent he heard of paragraphs hehe:) Nope sure havent but since I went all out on video and sound I thought hey you know what why don't I dump this AMD and go for Intel pentium but before this desicion came around I was working on my Shuttle AK31 v3.1 and come to find out I ordered the wrong cpu when after I upgraded my bios to handle the xp2100+ cpu 1.73Ghz Thurobroud and was running the 1900+ 1.60Ghz Palimieo or what ever it was called but find out it would on;y run the paliminio chip so I was like well I don't want to overclock my board and put any stress on the board so I will put that 1900+ back in so I take my computer apart and go to take off the volcano 7+ fan made by thermaltake and requires a screwdriver flathead and a bit of skill in there words be carfull and use our product at your risk...lol
    anyways the scredriver sliped and broke off a micro transister and I was like oh crap and could had cryed for damaging my babie but I belive it was time to move on and that is why it hapened when it did hehe..
    but I called tigerdirect to get back on to the subject and told them what I was confused about and magell was his name I believe and he said yes it was a 3.00Ghz and the HT was what made it clock like a 3.06Ghz processor. So I was like wooo thats a relief and was so happy now I will order all of this below hope yo like my system hehe I know I will.
    http://www.tigerdirect.com/applications/SearchTools/item-details.asp?sku=C13-5100
    http://www.tigerdirect.com/applications/SearchTools/item-details.asp?EdpNo=471762&Sku=T925-1050&CatId=795
    http://www.cyberguys.com/templates/searchdetail.asp?T1=148+0070
    http://www.tigerdirect.com/applications/SearchTools/item-details.asp?EdpNo=579850&Sku=CP1-P430008NC
    Pricie hu I will have over 3 grand in my computer lol thats a lot for my hobby but the games are ausome let me tell ya I can't wait for half live 2 I think to come out and I love war games and sniper games like counter strike the graphics are grate
    Also I heard that intel is making a chip next year called the Xeron or somthin and will be 4.00Ghz with HT and the i874 and i8875 chip sets might not be compatible if they change there chip desighn could this also be true too has any one heard this or not? but I will let you go and give your eyes a rest but I thought I should thank yo both for your help and the link I do apreesheate it a lot and hope that everything runs smooth and fast You think?

Maybe you are looking for