Errors when trying to mosaic compressed images

I am trying to load georaster data into Oracle 11g 11.2.0.2. I was successful then doing this by using the following steps:-
- SDO_GEOR.IMPORTFROM
- sdo_geor.mosaic
However when I try to compress the images as JPEG-B I get an Oracle error when performing the mosaic operation.
ORA-13485: error occurred during compression or decompression: lossy then something related to colormaps.
Has anyone ever seen a similar error.
These are the scripts.
set serveroutput on size 1000000;
set timing on;
LOAD
-- THE SDO_RASTER TABLE HAS TO BE UNIQUE IN THE ENTIRE DATABASE
DROP TABLE GEO_25K PURGE;
DROP TABLE RDT_25K PURGE;
CREATE TABLE GEO_25K ( ID NUMBER PRIMARY KEY,
     SOURCE_FILE VARCHAR2(80),
     DESCRIPTION VARCHAR2(32),
     GEOMMBR SDO_GEOMETRY,
     GEORASTER SDO_GEORASTER);
CREATE TABLE RDT_25K OF SDO_RASTER
     (PRIMARY KEY (RASTERID, PYRAMIDLEVEL, BANDBLOCKNUMBER, ROWBLOCKNUMBER, COLUMNBLOCKNUMBER))
     LOB(RASTERBLOCK) STORE AS (NOCACHE NOLOGGING);
CALL SDO_GEOR_UTL.CREATEDMLTRIGGER('GEO_25K','GEORASTER');
-- IMPORTFROM DOES NOT SUPPORT JPG ONLY TIFF, GIF, BMP AND PNG
-- SET TIMING ON IN SQLPLUS TO SEE HOW LONG THE LOAD TAKES
-- 28 X JPG CONVERTED TO TIFF REPRESENTS 1.93GB ON DISK AND 2286MB IN THE DB AND TOOK 1 HOUR 11 MINUTES TO LOAD
DECLARE
     TYPE FILE_LIST IS TABLE OF VARCHAR2(200);
     files FILE_LIST;
     geor MDSYS.SDO_GEORASTER;
BEGIN
     dbms_java.set_output(1000000);
     get_dir_list('/PRLR01/fssa01/RASTER/LOAD/');
     FOR i in ( SELECT rownum,FILENAME from dir_list where FILENAME like '%TIF' )
     LOOP
          dbms_output.put_line(i.FILENAME);
          dbms_output.put_line(SUBSTR(i.filename, 1, LENGTH(i.filename)-4) || '.TFW');
          INSERT INTO GEO_25K VALUES (i.rownum, i.filename, '', null, MDSYS.SDO_GEOR.INIT('RDT_25K', i.rownum));
          SELECT GEORASTER INTO geor FROM GEO_25K WHERE ID = i.rownum FOR UPDATE;
          MDSYS.SDO_GEOR.IMPORTFROM(geor, 'compression=JPEG-B', 'TIFF', 'FILE', i.FILENAME,
               'WORLDFILE', 'FILE', SUBSTR(i.filename, 1, LENGTH(i.filename)-4) || '.TFW');
          UPDATE GEO_25K SET GEORASTER = geor WHERE ID = i.rownum;
          SELECT GEORASTER INTO geor FROM GEO_25K WHERE ID = i.rownum FOR UPDATE;
          MDSYS.SDO_GEOR.SETRASTERTYPE(geor, 21001);
          UPDATE GEO_25K SET GEORASTER = geor WHERE ID = i.rownum;
          SELECT georaster INTO geor FROM GEO_25K WHERE id = i.rownum FOR UPDATE;
          sdo_geor.setModelSRID(geor, 81989);
          UPDATE GEO_25K SET georaster = geor WHERE id=i.rownum;
     END LOOP;
     COMMIT;
END;
MOSAIC
set timing on;
--After the GeoRaster are loaded you may want to set the appropriate SRID if this was not set correctly.
--SELECT sdo_geor.validateBlockMBR(georaster), id FROM GEO_25K;
--select id, sdo_geor.getModelSRID(georaster) from GEO_25K;
--Then you need to validate the GeoRasters to see if they have been setup correctly.
--SELECT t.id, sdo_geor.validategeoraster(t.georaster) isvalid from GEO_25K t order by id;
--After you have loaded all the georasters, iSMART will pick up each row of the georaster as an individual layer so you need to create a mosaic layer or table
drop table GEO_MOSAIC_25K;
drop table RDT_MOSAIC_25K;
CREATE TABLE GEO_MOSAIC_25K ( ID NUMBER PRIMARY KEY,
SOURCE_FILE VARCHAR2(80),
DESCRIPTION VARCHAR2(32),
GEOMMBR SDO_GEOMETRY,
GEORASTER SDO_GEORASTER);
CREATE TABLE RDT_MOSAIC_25K OF SDO_RASTER
(PRIMARY KEY (RASTERID, PYRAMIDLEVEL, BANDBLOCKNUMBER, ROWBLOCKNUMBER, COLUMNBLOCKNUMBER))
LOB(RASTERBLOCK) STORE AS (NOCACHE NOLOGGING);
call sdo_geor_utl.createDMLTrigger('GEO_MOSAIC_25K','GEORASTER');
DECLARE
gr sdo_georaster;
BEGIN
insert into GEO_MOSAIC_25K (id, georaster)
values (1, sdo_geor.init('RDT_MOSAIC_25K'))
returning georaster INTO gr;
sdo_geor.mosaic('GEO_25K', 'georaster', gr, '');
update GEO_MOSAIC_25K SET georaster=gr where id=1;
commit;
END;
--Then you need to validate the mosaic.
-- SELECT sdo_geor.validateBlockMBR(georaster), id FROM GEO_MOSAIC_25K;
SELECT t.id, sdo_geor.validategeoraster(t.georaster) isvalid from GEO_MOSAIC_25K t order by id;
--The in order to achieve real performance you need to pyramid the mosaic raster. If you don't specify a pyramid level then you oracle will calculate it.
--If you have set them max resolution to this layer using the Oracle calculated value will produce too many pyramid levels, you need to calculate how many pyramid value you will need
--See URL for Pyramiding http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28398/geor_intro.htm#CHDDEGJJ
DECLARE
gr sdo_georaster;
BEGIN
SELECT georaster INTO gr
FROM GEO_MOSAIC_25K WHERE id = 1 FOR UPDATE;
-- Generate pyramids.
sdo_geor.generatePyramid(gr, 'rLevel=5, resampling=NN');
-- Update the original GeoRaster object.
UPDATE GEO_MOSAIC_25K SET georaster = gr WHERE id = 1;
COMMIT;
END;
quit
These work fine until I include 'compression=JPEG-B'
Cheers,
David

Check document:
1.10.2 DEFLATE Compression of GeoRaster Objects
DEFLATE compression compresses objects according to the Deflate Compressed Data Format Specification (Network Working Group RFC 1951), and it stores the compressed data in ZLIB format, as described in the ZLIB Compressed Data Format Specification (Network Working Group RFC 1950). The ZLIB header and checksum fields are included in the compressed GeoRaster object.
Although DEFLATE compression is supported for GeoRaster objects of any size, the total size (columnsPerBlock * rowsPerBlock * bandsPerBlock * cellDepth / 8) of each block of the GeoRaster object must not exceed 1 gigabyte (GB). For large GeoRaster objects, you can call the SDO_GEOR.changeFormatCopy procedure to block the GeoRaster object into blocks smaller than1 GB, and then compress the GeoRaster object; or you can perform the blocking and compression in the same call to the SDO_GEOR.changeFormatCopy procedure.
Because DEFLATE compression is lossless, compression quality does not apply, and is ignored if it is specified.
compression
Specifies the compression type to be applied to the GeoRaster object. Must be one of the following values: JPEG-B, JPEG-F, DEFLATE, or NONE. (You can use NONE to decompress a compressed GeoRaster object.) If compression is not specified, the compression type of the source GeoRaster object is used. For more information about compression and decompression, see Section 1.10. Example: compression=DEFLATE

Similar Messages

  • Error when trying to save still image from video with Quicktime Pro

    I just purchased Quicktime Pro so that I can use it with my new Nano (the one that shoots video). I want to grab a frame from the video and create a still image (in jpeg format). I should be able to do it, but when I try, I get an error 11005 (or something like that). Anyone know any way to fix this? Thanks!

    I also tried the alt/ctrl/shift buttons when clicking Editor in the Photoshop welcome screen. It did ask if I wanted to reset the preferences. I chose yes. I still get the same error message when trying to save for web.
    Below....showing I don't have a "save for web" folder on my C drive.
    And below, showing the same error after pressing alt/shift/ctrl when clicking on editor and clearing the preferences.
    I don't have a 'Save for Web' folder anywhere on my C: drive. I searched and came up with no folder with the text "save for web" in it.
    I did find a "save for web" folder on my D: drive and deleted that.. but now when I start up Photoshop, the option for Save for Web is grayed out...not able to select it.

  • I/O device error when trying to backup system image (any advice? please!)

    Having posted this once with absolutely no response, I'll try again.
    When trying to backup my K330B system image, I get "device error encountered with either the source or the destination (0x8078012D)" and "Additional information: The request could not be performed because of an I/O device error.  (0x8007045D)"  It recommends chkdsk/r on both the source and destination devices.  I did this for C: and for the external drive I'm backing up to.  No problems are found.
    I also found the Lenovo Hard Drive Quick Test on the support site.  It does not list K330B as one of the devices it is designed for, but I tried it anyway.  It reported an error on the read test and two other tests that it performed when directed to test all partitions on the HDD.
    Has anyone else had problems backup up the entire system image but no problems backing up just the C: partition?

    Backing up system image using what program or component?
    What brand hard drives? Most manufacturers have test utilities
    for their drives, sometimes better at finding errors.
    As HDQT you tried found some errors, you should test drives
    more thoroughly as a first step.

  • Error when trying to upload an image

    Hi!
    I'm trying to upload an image to my container name "vhds" inside storage account "pruebasatfacr" but I'm getting the following error:
    [root@vmlbcatfl49 KVM]# azure storage blob upload -a pruebasatfacr -k "$base64string"  --container vhds
    info:   
    Executing command storage blob upload
    File name: azure-POSTGRES-9.3.2-RHEL-65.X64.ATF.PRB-disk1.vdh
    + Checking blob azure-POSTGRES-9.3.2-RHEL-65.X64.ATF.PRB-disk1.vdh in container vhds
    error:  
    getaddrinfo ENOTFOUND
    info:   
    Error information has been recorded to azure.err
    error:  
    storage blob upload command failed
    [root@vmlbcatfl49 KVM]# cat azure.err
    Fri Jan 02 2015 09:07:47 GMT+0100 (CET):
    { [Error: getaddrinfo ENOTFOUND]
    stack: [Getter/Setter],
    code: 'ENOTFOUND',
    errno: 'ENOTFOUND',
    syscall: 'getaddrinfo',
    __frame:
    { name: '__1',
    line: 270,
    file: '/usr/lib/node_modules/azure-cli/lib/util/storage.util._js',
    prev:
    { name: 'StorageUtil_performStorageOperation__1',
    line: 251,
    file: '/usr/lib/node_modules/azure-cli/lib/util/storage.util._js',
    prev: [Object],
    active: false,
          offset: 19,
    col: 4 },
    active: false,
    offset: 2,
    col: 15 },
    rawStack: [Getter] }
    Error: getaddrinfo ENOTFOUND
    at errnoException (dns.js:37:11)
    at Object.onanswer [as oncomplete] (dns.js:124:16)
    at __1 (/usr/lib/node_modules/azure-cli/lib/util/storage.util._js:272:15)
    at StorageUtil_performStorageOperation__1 (/usr/lib/node_modules/azure-cli/l
    at uploadAzureBlob (/usr/lib/node_modules/azure-cli/lib/commands/asm/storage
    I guess that can be a DNS
    issue but I need more information about that, does anyone
    know why can it be caused?
    Thanks in advance!

    Hi again and thanks for your response!
    I have a VM with Azure CLI tool running with RHEL 6.5, so that I think i can't use AzCopy only compatible for Windows O.S.
    The file that I want to upload is located on Azure CLI server and I execute de following command:
    [root@vmlbcatfl49 KVM]# azure storage blob upload -a pruebasatfacr -k "$base64string"  --container vhds
    info:   
    Executing command storage blob upload
    File name: azure-POSTGRES-9.3.2-RHEL-65.X64.ATF.PRB-disk1.vdh
    + Checking blob azure-POSTGRES-9.3.2-RHEL-65.X64.ATF.PRB-disk1.vdh in container vhds
    error:  
    getaddrinfo ENOTFOUND
    info:   
    Error information has been recorded to azure.err
    error:  
    storage blob upload command failed
    Further info related to this error:
    [root@vmlbcatfl49 KVM]# cat azure.err
    Fri Jan 02 2015 09:07:47 GMT+0100 (CET):
    { [Error: getaddrinfo ENOTFOUND]
    stack: [Getter/Setter],
    code: 'ENOTFOUND',
    errno: 'ENOTFOUND',
    syscall: 'getaddrinfo',
    __frame:
    { name: '__1',
    line: 270,
    file: '/usr/lib/node_modules/azure-cli/lib/util/storage.util._js',
    prev:
    { name: 'StorageUtil_performStorageOperation__1',
    line: 251,
    file: '/usr/lib/node_modules/azure-cli/lib/util/storage.util._js',
    prev: [Object],
    active: false,
          offset: 19,
    col: 4 },
    active: false,
    offset: 2,
    col: 15 },
    rawStack: [Getter] }
    Error: getaddrinfo ENOTFOUND
    at errnoException (dns.js:37:11)
    at Object.onanswer [as oncomplete] (dns.js:124:16)
    at __1 (/usr/lib/node_modules/azure-cli/lib/util/storage.util._js:272:15)
    at StorageUtil_performStorageOperation__1 (/usr/lib/node_modules/azure-cli/l
    at uploadAzureBlob (/usr/lib/node_modules/azure-cli/lib/commands/asm/storage
    Is it possible to continue exploring this option with the CLI tool to upload  the file (.vhd)?

  • Error when trying to preview 3d image from revolve tool

    I was trying to create a 3d image using the 3d revolve tool. I went to the tool and typed -30 degrees for the space where I was to specify the rotation of the X axis. I typed 0 degrees for specify the rotation of the Y axis. And I put 0 degrees for specify the rotation of the Z axis. I put perspective as 0 degrees, angle as 360 degrees, the cap was on, offset was 0 pt from left edge and surface was plastic shading. Then when i clicked preview i got an error saying `` The operation cannot be complete because there isn`t enough memory(RAM) available. My RAM is 4gb and I asked the store I bought it from and they said 4gb is pretty good for Windows. Oh and my operating system is Windows 7 Home Premium.

    Check the Blend Steps by revealing the "More Options" You are simply trying to create too many paths/ shapes to simulate your 3D effect.
    Mylenium

  • Photoshop Elements 7 - error when trying to open multiple images

    i have attached a screen shot of the error that i get when i try to open more than 1 image at a time. the program ends up closing and i have to re open the program.
    i have xp pro installed on my pc. my pc is part of domain. if i log on to the pc as another domain user i can open up more than one image. i have removed the program by using add/remove programs and re installed, which made no difference,
    does anyone have any advice?

    Have a look at this Adobe Tech doc titled Photoshop CS3 or Photoshop Elements 6 crashes when you open more than one image (Windows):
    http://kb2.adobe.com/cps/402/kb402704.html
    Cut/Paste from the very bottom of the document:
    Additional Information
    Application or system error logs may cite ntdll.dll as the faulting module.

  • Getting -61 error when trying to create an image

    I am trying to create a new image .. and my hard drive is not listed on the left hand panel .. the other night it worked fine except it would keep locking up so i did a disc repair and then restarted when i did a restart to prepare for a fresh install i noticed my hard drive was no longer in the disc utlitity not sure why that is.. Now the Snow leopard disc is stuck in the drive and I am unable to eject the disc tried almost every ejection command there is nothing .. isnt there a way to mount the hard drive through the terminal?

    This is from a reply to your other thread:
    Calgarystar wrote:
    ...seems odd that it worked before and then all of a sudden then it works then it doesnt...
    Hmmm... I have a hunch:  attempting to read through the imprecise Mac terminology of your previous posts, my intuition tells me that when you were referencing "installing on a new image" and "creating an image" that then "defaulted to 17 MB", you were misusing the term "image" to mean "partition".
    If that's the case and you went and tried to create a partition on your hard drive , then you obviously destroyed all your data and even the drive's formatting.
    That would most certainly explain a non-working hard drive.

  • I/O device error when trying to backup system image on my K330B running Windows 7 Home Premium

    I set up my Idea Centre K330B to schedule complete system backups to an external HDD once a week.  This worked fine for three months, then about a month ago a scheduled backup failed due to "device error encountered with either the source or the destination (0x8078012D)".  It also gave "Additional information: The request could not be performed because of an I/O device error.  (0x8007045D)"
    I ran chkdsk/r on both the backup drive ( E: ) and the system drive ( C: ) and no problems were found.  The backup drive has plenty of available space.  I tried the backup to a freshly NTFS-formated external drive.  I tried the backup with my BitDefender 2012 Anti-virus disabled. I tried the backup after booting in safe mode.  Nothing works.
    If I specify to backup only C: and not the reserved partition the backup completes with no problems.
    I get the same error condition whether I perform the backup with Windows or the Lenovo backup software.
    Is it possible I have a disk corruption on the reserve partition that is not found and repaired by the chkdsk/r C: operation?
    I'm thinking about saving all important user files and rebooting to the factory settings, but if the reserver partition is damaged I might end up with a dead 4-month-old PC.
    I would greatly appreciate any help or advice as to how to get these backups going again.

    I just tried running the Lenovo Hard Drive Quick Test both in normal mode and in safe mode.  Both times it indicated a failed read test on the HDD. The last two tests also failed.  I forget what those tests were called.
    I am really beginning to think I have a bad HDD and the problem just happens to be in the reserved partition where my factory system software resides.

  • I am getting a error IO when trying to upload multiple images within wordpress using the flash uploader. I do not get the error when uploading using explorer. The error only appears if I try uploading using firefox....any ideas?

    I am getting a error IO when trying to upload multiple images within wordpress using the flash uploader. I do not get the error when uploading using explorer. The error only appears if I try uploading using firefox....any ideas?

    Logged the call with SAP who directed me to 'Define settings for attachments' in IMG and setting the 'Deactivate Java Applet' & 'Deactivate Attachment versioning' checkboxes - problem solved.

  • HT3546 I get an error when trying to back up on my TC. Message says - The backup disk image "/Volumes/Data/Macintosh.sparsebundle" could not be accessed (error -1).

    I get an error when trying to back up on my TC. Message says - The backup disk image “/Volumes/Data/Macintosh.sparsebundle” could not be accessed (error -1).
    Any suggestions

    See here...
    https://discussions.apple.com/message/20933934#20933934

  • I keep getting this error when trying to backup time capsule with time machine. The backup disk image "/Volumes/Data-1/Dan's iMac.sparsebundle" is already in use.

    I keep getting this error when trying to backup time capsule with time machine. The backup disk image “/Volumes/Data-1/Dan’s iMac.sparsebundle” is already in use.

    Make sure that no other Macs are backing up at the time.
    Pull the power cable from the back of the Time Capsule
    Count to ten
    Plug the power cable back into the back of the Tme Capsule
    Wait a few minutes, then try a backup again.

  • Sql Server Web Edition Reporting Services errors when trying to connect to Windows Azure SQL

    I am using a preconfigured image from the Azure VM Gallery to create a VM.
    --> Sql Server 2012 SP1 Web running under Windows Server 2008 R2
    After configuring Reporting Services I get the following error when trying to run a report that connects to my Azure SQL db.
    An error has occurred during report processing. (rsProcessingAborted)
    An attempt has been made to use a data extension 'SQLAZURE' that is either not registered for this report server or is not supported in this edition of Reporting Services. (rsDataExtensionNotFound)
    On the VM using SSMS I can connect to the Azure SQL db.  On the VM in Report Builder when I define a connection I get a similar error to the one above when I test that connection.  I am using Microsoft Azure SQL as the data source type. 
    Interestingly in Report Builder, if I proceed past the connection definition, I can see the tables from my Azure SQL db in the dataset definition page.
    One more note.  If I use a different image from the Gallery (Sql Server 2012 Standard SP1 on Windows Server 2012) my report builder connection works and the reports run fine.  I believe that the Azure documentation says that Sql Server Web edition
    is an acceptable choice for the SSRS on VM for reporting.
    Any thoughts or suggestions?
    Thanks -- Tom Reilly

    Hello,
    A VM with SQL Server 2008 R2 or 2012 supports all Reporting Services features, including all supported data sources, customization and extensibility, and scheduled report execution and delivery.
    Did you run the report in Report Manager,or preview the report in Report Builder? Which version of the Report Builder you installed in the Windows Azure VM? SQL Reporting does not support reports created from Report Builder 1.0 or 2.0. You can create reports
    using Report Builder 3.0 and then upload the reports.
    What's more, please also check the database source credential of the report.
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here.
    Fanny Liu
    TechNet Community Support

  • I am getting an error when trying to add a caption.

    I get the following error when trying to add a caption to a photo.   "An error occurred while reading files or writing files to disc.  The disc may be full or there may be a problem with the source media."    I am running Windows 7 Pro.   The files are located on my c:.   The drive has 274 GB Free so space isn't an issue.   I have tried deleting a file and readding it to the same catalog and still the same problem.   I have copied the file to the desktop and cataloged it from there and the error went away.  
    If i check on the folder attibutes it is set to read-only but the desktop folder is as well.   If i try to remove the read only it only resets itelf to read only again.   Once i get the error another file shows up with the image name plus -edTM P-1 and it has the caption on it.  

    I was able to get it to work.  The root folder which held the pictures had a lock on it through windows 7.   Even though the drive was shared, I still had to go into the folder properties and share it with everyone.   Once i got the lock off and rebooted I was able to add captions again.

  • I can't use Photobooth - when I open the app, I get the message: "Photo Booth couldn't save your photos - Photo Both encountered an error when trying to save your photos. You photos cannot be saved at this time."

    I can't use Photobooth - when I open the app, I get the message: "Photo Booth couldn't save your photos - Photo Both encountered an error when trying to save your photos. You photos cannot be saved at this time."
    i tried adding user macintosh hd/users/your_user/pictures/"photo booth"  but still photo booth is not working and even images in photo booth cant be deleted they keep coming back

    Back up all data.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, 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.
    I've tested these instructions only with the Safari web browser. If you use another browser, they may not work as described.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box markedAllow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Triple-click anywhere in the following line on this page to select it:
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -R $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). I've tested these instructions only with the Safari web browser. If you use  another browser, you may have to press the return key after pasting.
    You'll be prompted for your login password. Nothing will be displayed when you type it. 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 a few minutes to run, or perhaps longer if you have literally millions of files in your home folder. 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 or if it doesn't solve the problem.
    Boot into Recovery. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal 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 boot 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.

  • Error when trying to migrate project from labwindows 2010 SP1 over to VS2008

    I'm sure I've been successful back with this when running CVI 8.5 and VS2003 / 2005, but I keep gettin the following error when trying to do this with my current configuration. What am I missing?
    See attached image
    Regards
    Gavin
    Attachments:
    CVI-VS error.JPG ‏29 KB

    Not recently, but what I would say is that CVI 2010 SP1 was installed after my VS2008 installation, so it ought to be in the right order.... When I get a moment I'll reinstall the CVI runtime and see what happens. Its not critical that I get this fixed, as the project in question is so small, and as the important parts are almost competely ANSI C, it should be really easy to reconstruct in C# anyway. I'll let you know what happens anyway

Maybe you are looking for