Format of the token_info blob of the $i index

This is the place where inverted lists are kept. I need to extract this information for efficient duplicate record discovery. In a simple example I've seen there were 3-byte records per token:
token_info 00 88 01 02 88 06 : a token is contained in 2 docs:
1. docid=token_first+00, first occurrence in the first word of the document
2. docid=token_first+02, first occurence in the sixth word of the document
I've also seen a 5-byte record for the word France in
"France is in Europe. France France":
0090010401 where 010401 looks like a running length enconding of position of word "France" in the document
Where could I find information about the binary format of token_info?

I read a reply to this type of problem.
I followed the directions to quit Safari the start it again while holding the Shift key down.
So far it seems to have corrected the problem.

Similar Messages

  • Automated email using blobs in the database

    hi,
    I am wanting to have the facility for my db to send emails with attachments(with the file stored in the db)
    in an automated fashion.
    the things I have working at the moment.
    1. I have got a DBMS_JOB working to handle the automated part.
    2. I have got a java class that sends emails. (no attachments)
    3. I have loaded the java class into the database using LOADJAVA
    4. A DBMS_JOB sends emails.
    Now what I want to know, is
    1. With attaching a file into a Java class, (remembering the program is going to be working from the database)
    I assume that a BLOB is the best option? as opposed to long Raw???
    2. possible specifics for the java class in attaching the BLOB to the message??
    3. in Oracle Forms, how do I get a file into the database as a BLOB. using DBMS_LOB???? what sort of Item
    do I declare them??
    Any Ideas/help would be greatly appreciated
    Greg

    Greg,
    Which database release do you plan to use? Here are the answers to your questions,
    1. We recommend our customers to use CLOB/BLOBs instead of LONG/LONG RAW since Oracle8. CLOB/BLOBs are much more flexible than LONG/LONG RAW.
    2. You can use JDBC to read BLOB/CLOBs from the database and format them to the desired mail protocol, say MIME. You can learn more about JDBC access of LOBs at http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/appdev.920/a96591/adl03prg.htm#283613
    3. You can find an example of using DBMS_LOB.LOADFROMFILE at http://tahiti.oracle.com/pls/db92/db92.tabbed?section=25021
    Is there a way for me to contact you for further discussion offline?
    Regards,
    Geoff
    hi,
    I am wanting to have the facility for my db to send emails with attachments(with the file stored in the db)
    in an automated fashion.
    the things I have working at the moment.
    1. I have got a DBMS_JOB working to handle the automated part.
    2. I have got a java class that sends emails. (no attachments)
    3. I have loaded the java class into the database using LOADJAVA
    4. A DBMS_JOB sends emails.
    Now what I want to know, is
    1. With attaching a file into a Java class, (remembering the program is going to be working from the database)
    I assume that a BLOB is the best option? as opposed to long Raw???
    2. possible specifics for the java class in attaching the BLOB to the message??
    3. in Oracle Forms, how do I get a file into the database as a BLOB. using DBMS_LOB???? what sort of Item
    do I declare them??
    Any Ideas/help would be greatly appreciated
    Greg

  • How do I identify the destination location in the blob service

    I'm preparing the hard drive for an import job (Windows Azure Backup) but for the life of me, I can't figure out what the destination blob is as referenced in the instructions at http://msdn.microsoft.com/en-us/library/dn529089.aspx
    I think I've laid all of the groundwork, but this has me stumped. (I'm sure it's been staring me in the face...I just don't see it.)

    Destination blob or virtual directory is the location where you would like your data to be available at the end of import. This should be a blob name if the source is a file and a virtual directory path if the source is a directory. Samples on the linked
    msdn page should help too. Couple of examples below as quick reference:
    Say you want to import your local file c:\data\test.mov to a blob in your storage account
    https://yourstorageacount.blob.core.windows.net/movies/test.mov, you would run a command line similar to the below:
    WAImportExport.exe PrepImport /j:drive1.jrn /id:movies /sk:XXXXXX /t:x /format /encrypt /srcfile:c:\data\test.mov /dstblob:movies/test.mov
    Note the destination blob path starts with the container name (“movies”).
    If instead of importing a single file, you want to import all files in your local directory
    c:\data\ to blobs in the container https://yourstorageacount.blob.core.windows.net/movies/, then use the following command:
    WAImportExport.exe PrepImport /j:drive1.jrn /id:movies /sk:XXXXXX /t:x /format /encrypt /srcdir:c:\data /dstdir:movies/
                    With this,
    c:\data\test.mov will be still imported to https://yourstorageacount.blob.core.windows.net/movies/test.mov;
    another file c:\data\another.mov will be imported to
    https://yourstorageacount.blob.core.windows.net/movies/another.mov

  • Greeting,  I want to reformat my external hard drive using Mac OS Extended (Journaled, Encrypted ) but before formatting it, I want to make sure that if I loose the hard drive or the hard drive get stolen, no one will be able to retrieve or recover the in

    Greeting,
    I want to reformat my external hard drive using Mac OS Extended (Journaled, Encrypted ) but before formatting it, I want to make sure that if I loose the hard drive or the hard drive get stolen, no one will be able to retrieve or recover the information on it so could you tell me what kind of encryption will be used or is there any way to recover the information?
    Thanks!

    I think FileVault is used to encryp internal hard drive but I wanna encrypt an external hard drive with Mac OS Extended Journaled Encrypted which is completely different!

  • Format the total value in the column of the graph table

    Hello all,
    I have a graph table and I need to format the total value in the column of the table.
    I am trying to find my table bean with the code below but it's not working in the processRequest. Is there anything else that should be done?
    // Get the graph
    OAGraphTableBean graphBean = (OAGraphTableBean)webBean.findChildRecursive("MyGraph");
    // Get the table
    OATableBean tblBean = (OATableBean)graphBean.findChildRecursive("MyTable");
    The tblBean is null in the processRequest. In the processFormRequest the tblBean is not null.
    Thanks and Regards,
    Andrea

    Hi,
    The code OAGraphTableBean graphBean = (OAGraphTableBean)webBean.findChildRecursive("MyTable"); does not work because in this case I am getting the table but casting to a graph.
    The MyTable bean is a child of MyGraph.
    When creating a graph bean we have the option to create a table as a child (select your graphTable region in the Structure pane, and choose New > tabularFormat - to create the table).
    The table bean child I can get just in the processFormRequest, but the graph I can get in both processRequest and processFormRequest.
    I need to get the table bean in the processRequest to format the total value column.
    Do you know if is there anything else that should be done to format the total column?
    Thanks and Regards,
    Andrea

  • Iphone 4 battery draining fast and yellowish blobs on the screen

    So I got my iphone 4 today. 32GB. Came home charged it full powered down for battery memory and left off for a few minutes like instructed.
    I have not done much with the phone and I am already at 85% within an hour of using it for texting. maybe 30 texts so far. Wifi off, no tethering connection made, Brightness turned to max push every 15 minutes 3G on. For a battery that is 40%n bigger it is really draining fast.
    Now I am noticing yellowish blobs on the right side vertically and a few on the top horizontally. I read in a post that it was because of not cured residue and should go away in a few days. DOES this make sense to you folks. Where does it say that on apples site.
    I am about to call a tech about this and have them send me something in writing.
    This is just frustrating as I was hoping for a great experience this year. From the let down from the white iphone to my battery being drained to now yellow blobs..man can anything else go wrong.
    What say you??????? any of you have battery issues yet

    If my past experience with iPhones and iPods is any indication, you'll find that over the next couple days as you use your iPhone the battery indicator will become more accurate. My habit (as I've done with my new iPhone 4) is to use it until the indicator shows red and then charge it fully and then do that twice more. At that point the indicator should be 'calibrated' with the battery and be more accurate. Yesterday I used my phone for about 5 hours before the battery indicator gave me 20% warning. Today I've used it as I normally would in a day and, as I always did with my G3S, I'm currently home from work with a 40% charge showing. Guess I'll have to play a little Angry Birds tonight
    I've seen nothing official from Apple about the yellow splotches but I read either at Engadget or Gizmodo this morning that a worker experienced with this process claims it is the bonding adhesive which hasn't finished curing. It has been widely reported second hand. Don't know if contacting AppleCare this early in the game will get you anywhere. Since iPhones are in short supply at this time and you have a year's warranty, I'd wait a couple days and see if the report is correct. If the yellow defect goes away it was true.

  • My iPhone isn't directing me properly to messages since I moved to the UK from Canada.  When I receive a new iMessage it opens a 'new message' thread to their number in a UK format rather than directing me to the established thread under their name.

    I moved to the UK a week ago and popped a new SIM in my unlocked iPhone 4 (all the latest software installed, 6.1.3, though I see in the drop-down below that there's a .4?  My phone says it is up to date anyway).  Since then, I have done a lot of texting to people back home in Canada.  Of course, for economical reasons, I am using iMessage.  When I'm talking to them, if I have messages open, and my screen hasn't gone to sleep, then I'm fine. But if the screen goes to sleep or I'm doing something else and I try to reply by way of any sort of notification where the phone redirects me to the message (when I tap a banner or unlock while an alert is showing), instead of sending me to where I can reply, it starts a whole new text message with the person's phone number in a UK format instead of their contact name.  Their message is in the iMessage conversation history where it belongs, but I can't read it in full until I cancel the 'New Message' and open their conversation in the Messages list.
    So far, I have tried:
    -Simple things like restarting my phone, resetting it, etc.
    -Changing the format of their number to include country code, to not include country code, to have the plus, to not have it, etc.
    -Changing where my messages come from, be it my phone number or my iCloud, etc.
    -Updating iCloud to make sure it knows I'm in the UK.
    -Resetting everything in the reset menu one at a time (I had hopes for settings and the Location & Privacy ones, but no). 
    -Erasing all content and settings and restoring my phone from a backup.
    I've pretty much messed with every setting, but please let me know any suggestions you have, I may have missed one.
    It does seem as if the format of my contacts has something to do with it, because I don't get a notification at all if I change the setting "Show iMessage Alerts From" to contacts only.  The iMessage goes through to the iMessage conversation, but the alerts I get seem to think it's a text message as it comes through with a sample of the message in the alert under their phone number.  It's only when I try to reply through an alert that it screws up.  I know this may seem small but it's driving me nuts, especially because I don't memorize people's phone numbers anymore so I don't know who sent the message until I exit the new message and look it up!
    Please help me before I go mad!

    I moved to the UK a week ago and popped a new SIM in my unlocked iPhone 4 (all the latest software installed, 6.1.3, though I see in the drop-down below that there's a .4?  My phone says it is up to date anyway).  Since then, I have done a lot of texting to people back home in Canada.  Of course, for economical reasons, I am using iMessage.  When I'm talking to them, if I have messages open, and my screen hasn't gone to sleep, then I'm fine. But if the screen goes to sleep or I'm doing something else and I try to reply by way of any sort of notification where the phone redirects me to the message (when I tap a banner or unlock while an alert is showing), instead of sending me to where I can reply, it starts a whole new text message with the person's phone number in a UK format instead of their contact name.  Their message is in the iMessage conversation history where it belongs, but I can't read it in full until I cancel the 'New Message' and open their conversation in the Messages list.
    So far, I have tried:
    -Simple things like restarting my phone, resetting it, etc.
    -Changing the format of their number to include country code, to not include country code, to have the plus, to not have it, etc.
    -Changing where my messages come from, be it my phone number or my iCloud, etc.
    -Updating iCloud to make sure it knows I'm in the UK.
    -Resetting everything in the reset menu one at a time (I had hopes for settings and the Location & Privacy ones, but no). 
    -Erasing all content and settings and restoring my phone from a backup.
    I've pretty much messed with every setting, but please let me know any suggestions you have, I may have missed one.
    It does seem as if the format of my contacts has something to do with it, because I don't get a notification at all if I change the setting "Show iMessage Alerts From" to contacts only.  The iMessage goes through to the iMessage conversation, but the alerts I get seem to think it's a text message as it comes through with a sample of the message in the alert under their phone number.  It's only when I try to reply through an alert that it screws up.  I know this may seem small but it's driving me nuts, especially because I don't memorize people's phone numbers anymore so I don't know who sent the message until I exit the new message and look it up!
    Please help me before I go mad!

  • I have partitioned my time capsule, but I can't get it to work as a Time Machine back up and permanent media server for both mac and PC. What format do I need to partition the drive to so that it works for both mac and windows and so that it will be visab

    I have partitioned my time capsule, as I want part of it to act as a media server for both mac and windows. However I don't know what format that I need to partition it to. I also can't make it a permanently accesible drive. I want to restore the drive to the original format (which I don't know) and start again and re-partition the drive in a format that can be used for media by both mac and PC and for time machine back-ups and make the media part of it permanetly accesible so I can add and acccess my files.
    Thanks

    You are mixing up a couple of things here.
    The TC drive cannot be partitioned without removing it.. did you do that?
    If you partition it you must use a Mac disk utility and use the HFS+ ie standard Mac format. And GUID partition table not windows type.
    You can select erase disk in the airport utility.. that will take the disk back to original format. No partitions. TC is deliberately not partitioned as it is not a media server.. it is a backup device for TM. Over time .. the disk will be filled with TM backups so you have a long history of file changes to your computer.
    There is no media server in the TC.. it is merely disk storage.. you can serve files from it to a media device.. but the TC itself is dumb as dumb.
    Now the actual format of the drive is irrelevant to the PC.. The TC offers SMB file services to the network. You can copy files to and from the TC as if it was a local disk without caring one iota about the format. The TC handles that .. it is not a local disk .. it is a network drive.
    Although you cannot partition the TC. you can still copy files to it.. this does have implications for TM.. but as long as there is plenty of free space should not be a major issue.
    You can create a disk image via the disk utility in a Mac.. and as stated you can create partitions if you do it on a Mac with the disk directly connected which means breaking warranty if any exists on the TC.

  • Trying to install/format an INTERNAL hard drive using Disk Utility gives me "Error: -69760: Unable to write to the last block of the device".   Is that a hardware problem and what could be done about it?

    *** PLEASE NOTE*** - This is a query about an INTERNAL HDD not an external one. Thanks.
    My Mac is a late 2009 model and the current hard drive recently failed. So I bought a new one, exactly the same, albeit 750gb instead of 500gb. The HDD is a Seagate Momentus 7200. Before the my current drive failed I made a time machine back up to an external USB HDD. I've inserted the HDD into the bottom of my Mac, plugged in the USB and started my machine pressing the 'Option' ([ALT]) key. I go into Disk Utility to try and format the new HDD by creating a new partition but I keep getting the messages,
    "Error: -69760: Unable to write to the last block of the device"
    or
    "POSIX: could not allocate memory"
    This is actaully the third HDD I've tried. The first was another Seagate Momentus 7200 500gb, but this time it was a newer model (model number ended in 423AS instead of 420AS - the new one I am trying ends with 420AS, which is the same as the current HDD). I then tried a Western Digital drive but that one didn't even show up in DU. Forums and tech support are suggesting it's faults with the HDDs but surely not three in a row?
    Could this be an issue with another part of my Mac?
    Is there anything else I can do to format the HDD, have I missed a crucial step?

    Did you ever get a resolution to this issue?
    I am having that exact error with a new 512GB SSD from Crucial, in a 15" MBP mid-2010.
    I really wonder now if the stupid SATA cable could be bad - causing the initial SSD fail.  I am replacing it with the EXACT same drive, and getting that "last block" error when i partition in the GUI or from command-line.
    thanks!

  • Convert the spool to xls format and email through attachment to the user

    Hi all,
    When I execute a report in background, I get spool. I need to convert the spool to xls format and email through attachment to the user.The xls file should not be saved on local system.
    If I use the Spool Recepient tab in SM37 it mails the spool list as .txt file to the mail receipient. But I need to send it as an .xls file.
    Can any one help me on this

    Did you get the solution? i have the same problem.

  • Displaying report in .pdf format while Running oracle reports over the web

    I am running a report over the web via IE. I am suing .pdf
    format as the file type. The problem I am facing is that the
    report comes out with a blank in acrobat reader if there are
    just one or two records - i.e less thatn one pagefull. THe
    reports displays output only when there ar more than one
    pagefull of records.
    Any explanation for this bezarre behavior and any suggestions?
    I will very much appreciate your help.
    Regards
    Prasad.

    in R12 I found 2 choice
    1) when submitting requests (if available) you can set the output format by using the Options button (upon sompletion section):
    layout --> format --> select format you need (RTF/HTML/EXCEL/PDF)
    2) in the request form (view->request) selecr the report you want to reprint in the Tools menu select print/republish, in the html page that pop up select output format you want, number of copies =1 submit
    www2p

  • Can I convert tracks from one format to another so that the converted tracks appear in the various playlists of the originals?

    I have a large number of tracks which I should like to convert from one format to another (aiff to Apple lossless).  These tracks are distributed in a large number of playlists.  Can I convert a track or tracks from one format to another so that the converted track appears in the playlist of the original track without going through a laborious and error-prone process of converting each track individually, determining the playlist of the original, and allocating the converted version to the playlist (or playlists, because in many cases the original track exists in more than one playlist) of the original track.

    I do not believe iTunes will do this.  The files created are essentially new media files, not regarded as replacements for old files.  There may be ways to trick iTunes if you are good at editing library files but that would be more trouble than it is worth.
    You can check the site below but I do not recall having seen such a script.
    Dougscripts - http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y - Many itunes scripts
    If you're into writing Applescripts you could try it.

  • Since installing the last iPhoto update sharing a photo via e-mail opens a google e-mail format instead of an Apple Mail format.  How can I get the Apple Mail format to come up when I click on share?

    Since installing the last iPhoto update sharing a photo via e-mail opens a google e-mail format instead of an Apple Mail format.  How can I get the Apple Mail format to come up when I click on share?

    iPhoto preferences - set the email client to Mail
    LN

  • How do I convert an excel (2008) document to Numbers?  When I drag the Excel document onto the Numbers icon I get, "Import error.  The file format is invalid"

    How can I convert an Excel (2008) document to Numbers.  When I drag the Excel document onto the Numbers icon I get, "Import error.  The file format is invalid.

    That extension identifies the most current Excel file format, a format that can be opened by Numbers '09 (and by Numbers '08).
    A check with Numbers '09 shows it capable of opening .xlsx files when right-clicked (and Numbers chose as the application to open, when double-clicked (if Numbers has been set as the default application to open this type of file, or when dragged to the Numbers icon in the dock.
    I see two possibilities for Numbers inability to open it and the message you receive:
    1. The file is not actually an Excel file, and the sender has added the .xlsx extension to the filename manually.
    2. The file is an Excel file, but has somehow been corrupted.
    Have you tried opening the file with a different application? The open source Office suites, OpenOffice.org, LibreOffice and NeoOffice can also open .xlsx files. If they're unable to open this one, that would point toward the file itself being faulty. You can download these applications from their rspective websites, linked in the names above. All request a donation to support future development, but only Neo requires one to have been made recently, and that only for the current release (which won't be necessary to open .xlsx files).
    Regards,
    Barry

  • United Kingdom Regional Format sets Monday as the first day of the week.

    With the Region Settings (Settings -> General -> International -> Region Format) set to United Kingdom, Calendar displays Monday as the first day of the week. I have seen other posts whereby it was suggested to change to US Internationalization but this will also change the date and telephone number formats to US settings, far more frustrating.
    Have I been sheltered from properly formatted calendars all my life or is this a mistake and it should start the week on Sunday. It is consistent in both the Week and Month view.
    Am I crazy or does anyone else agree with is?

    Same here. One of the first things I do in this sort of application is switch week start to Mondays.
    Terry, East Grinstead, UK
    Message was edited by: Terry P

Maybe you are looking for

  • Some Files Cannot Be Moved

    I had to kill my old partition because it was only 32 GB, and now I get the error "Your hard drive cannot be partitioned because some files cannot be moved." I've defragged my HD, deleted some large files, and done pretty much everything I can think

  • Download Helper no longer shows up in Fire Fox's Download Screen.

    Firefox just automatically downloaded/updated Download Helper Ver 4.9.13 the other day and something weird happened. It still links and downloads Video's off the web just fine but it doesn't show up in the Firefox Download list. The animated Icon in

  • Apache with OC4J

    How do we configure Apache to handle the static HTML and OC4J to handle the dynamic (JSP) content within a J2EE Application with a Web Module? I've just browsed both the General and J2EE forums, searching on "Apache". I see where others have asked th

  • Call to R/3 transaction from CRM CIC0 Action Box

    Hi All, I configured in CRM the action box to call MySAP (transaction VA01), I used the method BOR with the object BUS2032 and the method CREATEWITHDIA, but I need to configure the action box to pass data from the transaction CIC0 into the R/3 system

  • My mac says that i have version 11.7.2 and i know there is no 11.7.2 and i cant download certain things like xcode

    I can't download xcode because it says that ihave the wrong version please help