Help with 14400 ORA error while inserting data

Hi all

I am facing an error ora-14400 in the following scenario, please help.

I created a table using the syntax:

CREATE TABLE insert_table
(
NUMBER OF GRPKEY (20, 0) NOT NULL,
N NUMBER (10, 0),
JOVAN VARCHAR2 (250 BYTE),
APC VARCHAR2 (2 BYTE),
SID VARCHAR2 (65 BYTE),
RDATETIME VARCHAR2 (BYTE 19),
NUMBER OF CKEY (20, 0),
AVER VARCHAR2 (25 BYTE),
VARCHAR2 (250 BYTE) CVER,
TNOM VARCHAR2 (50 BYTE),
SCODE VARCHAR2 (30 BYTE),
PTAPEZ VARCHAR2 (50 BYTE),
NUMBER OF FILENUMB (10, 0),
NUMBER OF LINENUMB (10, 0),
DATE OF ENTRY_CREATEDDATE
CONSTRAINT temp_table_PK PRIMARY KEY (GRPKEY))
PARTITION OF RANGE (ENTRY_CREATEDDATE)
(PARTITION P0 VALUES LESS THAN (TO_DATE (' 2009-01-01 00:00:00 ',' SYYYY-MM-DD HH24:MI:SS ',' NLS_CALENDAR = GREGORIAN ')))
);


When I try to insert data using the:


insert into insert_table values
(1, null, null, null, null, null, null, null, null, null, null, null, null, null, November 1, 2010 "");

I get the following error output:
Error report:
SQL error: ORA-14400: inserted partition key is not mapped with any partition
14400 00000 - "inserted partition key is not mapped to any partition.
* Cause: An attempt was made to insert a record into a beach or a Composite
Range object, with a concatenated partition key that overflows
the concatenated partition bound list of the last partition - or-
An attempt was made to insert a record into a list object with
a partition key that does not match the specified literal values
for all partitions.
* Action: Do not insert the key. Add a partition capable of accepting
the key, or add values corresponding to the key a partition specification

Hi Chaitanya,

Change your table script to

CREATE TABLE temp_table
(
GRPKEY NUMBER(20, 0) NOT NULL,
UKEY NUMBER(10, 0),
ANUM VARCHAR2(250 BYTE),
APC VARCHAR2(2 BYTE),
SID VARCHAR2(65 BYTE),
RDATETIME VARCHAR2(19 BYTE),
CKEY NUMBER(20, 0),
AVER VARCHAR2(25 BYTE),
CVER VARCHAR2(250 BYTE),
TNAME VARCHAR2(50 BYTE),
SCODE VARCHAR2(30 BYTE),
PTYPE VARCHAR2(50 BYTE),
FILENUMB NUMBER(10, 0),
LINENUMB NUMBER(10, 0),
ENTRY_CREATEDDATE DATE
, CONSTRAINT temp_table_PK PRIMARY KEY (GRPKEY))
PARTITION BY RANGE(ENTRY_CREATEDDATE)
(PARTITION P0 VALUES LESS THAN(TO_DATE(' 2009-01-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN')),
PARTITION P1 VALUES LESS THAN(MAXVALUE)
);
insert into temp_table values
(1,null,null,null,null,null,null,null,null,null,null,null,null,null,'01-NOV-2010');
1 row inserted

or refer the question about the "Date of partitioning of a table"
* 009 *.

Published by: 009 November 3, 2010 23:29

Tags: Database

Similar Questions

  • Error while inserting data with DBMS_RANDOM

    Hello
    I tried the following insert command in the link http://www.oracle-base.com/articles/misc/RollupCubeGroupingFunctionsAndGroupingSets.php
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Release 10.2.0.1.0 - Production
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    
    SQL> INSERT INTO dimension_tab
      2  SELECT TRUNC(DBMS_RANDOM.value(low => 1, high => 3)) AS fact_1_id,
      3         TRUNC(DBMS_RANDOM.value(low => 1, high => 6)) AS fact_2_id,
      4         TRUNC(DBMS_RANDOM.value(low => 1, high => 11)) AS fact_3_id,
      5         TRUNC(DBMS_RANDOM.value(low => 1, high => 11)) AS fact_4_id,
      6         ROUND(DBMS_RANDOM.value(low => 1, high => 100), 2) AS sales_value
      7  FROM   dual
      8  CONNECT BY level <= 1000;
    SELECT TRUNC(DBMS_RANDOM.value(low => 1, high => 3)) AS fact_1_id,
                                       *
    ERROR at line 2:
    ORA-00907: missing right parenthesis
    Could you please advice me to get the correct records

    >
    You cannot use named parameters for the function/procedure calls in SQL up to version 11.
    >

    You cannot use a procedure in SQL even in version 11.

    For the OP,.

    The named parameters in the functions not suitable for versions of oracle less than 11 in what Tubby said.

    Try the following.

    INSERT INTO dimension_tab
    SELECT TRUNC(DBMS_RANDOM.value( 1,  3)) AS fact_1_id,
           TRUNC(DBMS_RANDOM.value( 1,  6)) AS fact_2_id,
           TRUNC(DBMS_RANDOM.value( 1,  11)) AS fact_3_id,
           TRUNC(DBMS_RANDOM.value( 1,  11)) AS fact_4_id,
           ROUND(DBMS_RANDOM.value( 1,  100), 2) AS sales_value
    FROM   dual
    CONNECT BY LEVEL <= 1000;
    

    G.

  • Getting error while inserting data from source to the target in the procedures?

    Hello

    I want to insert the data from the source to the target in the procedures, have the same schema.

    For this, I did as follows

    Command on the source:

    Technologies: oracle

    Schema: EDWHCMB

    Command:

    SELECT COMPANY_NAME, COMPANY_CODE OF

    EDWHCMB. DWT_COMAPNY

    Command on the target:

    Technologies: oracle

    Schema: EDWHCMB

    command:

    INSERT INTO EDWHCMB. TEMP

    VALUES)

    COMPANY_CODE,

    COMPANY_NAME)

    I have run the procudere then I got error as follows

    ODI-1228: SAMPLE1 (procedure) task fails on ORACLE EDWH connection target.

    Caused by: java.sql.BatchUpdateException: ORA-00984: column not allowed here.


    How to insert the data from the source to the target in the proceedings?

    Please send any document to this...

    Please help me.

    Thanks in advance,

    A.Kavya.

    Hi Bruno.

    If your tables are on the same schema then why do you use command on the source and the command on the target? You can simply do the following on the command on the target

    INSERT INTO EDWHCMB. TEMP

    SELECT COMPANY_NAME, COMPANY_CODE OF

    EDWHCMB. DWT_COMAPNY


    If you really want at all to use the command on the source and target both then I think you need to change the following code on your order on the target

    INSERT INTO EDWHCMB. TEMP

    VALUES)

    : COMPANY_CODE,.

    (: COMPANY_NAME)

    Hope your TEMP table has only these 2 columns.

    Thank you

    Ajay

  • Error while loading data file with using a file of rules through a MAXL.

    I think that the functionality to generate a. Records error during loading data in the ERR file is supported only if there is a. RUL file being used.

    Is this good?

    I tried to get. ERR files to generate by using the following statement:
    Import database PL_RPT. Reprting data data_file
    "E:\Hyperion\AnalyticServices\APP\PL\PL.txt" to load_buffer with buffer_id 17
    Error writing to "E:\Hyperion\Scripts\Pln\Logs\LoadlData.err."

    When I run this, if there are errors, it is not generated any file errors and stops the load.

    I saw the technical reference Essbase ASO MAXL data loading and code syntax diagram indicates that it is supported.

    Any suggestions will be greatly appreciated.

    Thank you

    Hello

    Here are a few suggestions for trapping errors. I hope that one of them will meet your needs:

    1._____________________________________________

    spool to 'D:\logs\maxlresults.out ';

    function SIERREUR 'WRITE_ERRORS ';

    / * do stuff * /.

    Define the label 'WRITE_ERRORS ';
    spool off;
    spool to 'D:\logs\maxlerrors.out ';
    "exit";

    2._____________________________________________

    coil stdout to "D:\logs\maxlresults.out."
    coil stderr to "D:\logs\maxlerrors.out."

    3._____________________________________________

    essmsh script.msh 2 > D:\logs\maxlresults.out

    Robb

  • Error in inserting data to the database

    I use SQL to store the data when I'm insterting the data in my table and then I get the error 2147217833.

    The image that is attached to the table structure and PROCESS as I am recording insterting. I use LV2011.

    I am able to connect to the database but error by inserting

    Soved. UerId 5 and I've been insterting 6.

  • Help with the MuseJSEssert error in safari

    Hello

    My site works fine in google chrome, firefox on android, but will not load on my mac in safari, or on an iphone...

    Suggests his problem with safari, rather than with my site?

    I get this error...

    MuseJSAssert: Error calling the function switch: TypeError: undefined is not a function (assessment ' $(elem) .museMenu () ')

    Anyone got any ideas?

    Thanks in advance

    You can refer to these discussions:

    MuseJSAssert: Error calling function of selection: [Object Error]

    Need help with error MuseJSAssert

  • Need help with the Blue error screen.

    I'm having problems with the Blue error screen at startup which said "less than or equal Driver_IRQL_not. He entered the State of memory dump & black screen after that.  Nothing was abnormal after checking all the drivers in windows 7 Edition Device Manager Home premium. I'm really lost as to what causes it? My computer is a toshiba satellite laptop computer P840 pourrait-someone ' a please advise me on this matter. Thanks in advance for your patience.

    Dear Zigzag3143,

    I finally managed to fix the problem by the chance. I had discovered that this problem was caused by the sypnatics of the laptop touchpad driver. Uninstalled A & reinstall it with the correct driver from the laptop manufacturer websites. Did not expect that it is the cause of all the problems. Thank you for your valuable advice.

  • help with windows update errors and chkdsk

    I got a message saying I needed to update my windows.  I went to windows update, the express settled.  I received a message that says that I can't install the update to windows.  This is the message I received:

    The website has encountered a problem and cannot display the page you are trying to view. Take the following steps to try to resolve the problem:

    • Refresh the page.
    • In Internet Explorer, delete the temporary Internet files by going to the Tools menu and then Internet Options.
    • Close and then reopen Internet Explorer.

    Then I'm defragmenting my "C" drive and I get an error with the States: Please run chkdsk /f.  I run that, once it goes through the whole process, I will return to defragment and I STILL get the same message.  I don't know how to clear these while I am able to update and to defragment my system.

    Thank you for your help

    Hello

    You can try the troubleshooting provided in the link below steps to fix the problem.

    You receive an error message "0x800A01AE" or a "0 x 080070570" error message when you try to connect to the Windows Update Web page or to the Microsoft Update Web page in Windows Server 2003 or Windows XP

    http://support.Microsoft.com/kb/910359

    See also:

    You may encounter temporary connection related errors when you use Windows Update or Microsoft Update to install updates

    http://support.Microsoft.com/kb/836941

  • Error while loading data in Planning

    Failed to load the data in the planning of the 11.1.2.3.200 using ODI 11.1.1.7

    Please find the errors at the bottom of newspapers:

    INFO [SimpleAsyncTaskExecutor-2]: Oracle Data Integrator adapter for Hyperion Planning

    INFO [SimpleAsyncTaskExecutor-2]: Connection to the planning your application [xxxxxxx] on [xxxxxxxxxxx]: [xxxx] using [admin] username.

    [SimpleAsyncTaskExecutor-2] INFO: Successfully connected to the planning application.

    INFO [SimpleAsyncTaskExecutor-2]: Loading for the charge of planning options

    Name of the dimension: account type Parent child: false

    Order By entry charge: forgery

    Update the database: false

    INFO [SimpleAsyncTaskExecutor-2]: Beginning of the loading process.

    DEBUG [SimpleAsyncTaskExecutor-2]: number of columns in the result set of source does not match the number of columns planning targets.

    INFO [SimpleAsyncTaskExecutor-2]: Type of load is a [member of the load dimension].

    ERROR [SimpleAsyncTaskExecutor-2]: file [[A603010, null, null, null, null, null, null, null, null, null, null, null, xxxxx,-100, F3E0, C011, E7172_93275, FY17, Stage 1, level of current Service, Jul, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null]] was rejected by Planning Server.

    ERROR [SimpleAsyncTaskExecutor-2]: file [[A601060, null, null, null, null, null, null, null, null, null, null, null, xxxxx,-250, F3E0, C011, E7172_93275, FY17, Stage 1, level of current Service, Jul, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null]] was rejected by Planning Server.

    log. Err

    Account, name of Cube to load data, Budget, Point of view, Error_Reason

    A603010, xxxxx,-100, F3E0, C011, E7172_93275, FY17, Stage 1, current service level, Jul, cannot load the dimension member, error message is: RemoteException occurred in the server thread; nested exception is:

    java.rmi.UnmarshalException: not recognized hash method: method not supported by the remote object

    A601060, xxxxx,-250, F3E0, C011, E7172_93275, FY17, Stage 1, current service level, Jul, cannot load the dimension member, error message is: RemoteException occurred in the server thread; nested exception is:

    java.rmi.UnmarshalException: not recognized hash method: method not supported by the remote object

    Journal FDMEE:

    : [AIF] error: no record exists for period "Pd 2 - 01-08-2014".

    : [AIF] error: no record exists for period "Pd 3-2014-09-01"

    FDMEE logging level is set to 5

    The PES of planning that you applied contains a new version of the HspJS.jar so that could be a possible way of this error could have surfaced. For me personally, I think you'd better get everything patched up to the 11.1.2.3.500 PSU continuing at least before that it is a known problem in this version and there are the notes I have mentioned previously, to help patching.

    It is clear from the error that there is a mismatch in versions of the Agent of ODI FDMEE with the Planning Server jar files. One thing you might be able to try on this front would be to save the current file HspJS.jar in the C:\Oracle\Middleware\odi\oracledi.sdk\lib House FDMEE ODI and place a copy of the same file of your planning server in the C:\Oracle\Middleware\EPMSystem11R1\products\Planning\lib folder (or equivalent).

    I've not personally seen this error before where the 500 patch had not been implemented well. Decide which approach you take will be up to you really, but I suggest to patch to 500 as best as possible and go from there.

    Concerning

    Craig

  • I need help with a 404 error

    Firefox has developed a 404 error.
    Yes Internet Explorer has it as well.

    Thank you

    With certain web sites? A lot, some?

    Some problems occurs when your Internet security program has been implemented.
    trust the previous version of Firefox, but not more acknowledges your
    update as being approved. Now how do I solve the problem: to allow
    Firefox to connect to the Internet

    • Make sure your Internet security software is up-to-date (for example, you are using the latest version).
    • Delete Firefox to list your program of programs approved or recognized. For detailed instructions, see

    Configure the firewall so that Firefox can access the Internet. {web link}

  • Need help with Windows Update, error

    Whenever I try to run Windows Update, I get an error Code 80070490.  Any suggestions?

    Hi Claire,
     
    The error you receive occurs if there is corruption in the manifest of component maintenance base.  The only way to fix this is to do a "repair" of Windows Vista installation.

    http://support.Microsoft.com/kb/958044/en-us
    The 'repair' installation (upgrade on-site) will not affect your installed programs or data.  Just make sure that you are already connected to your computer when you start the installation.  Do not boot from the DVD .

    If the installation does not start automatically when you insert the DVD, run setup.exe from your DVD player.

    • When the Setup program starts and the install now screen, click install now .
    • Note When you receive the important Get updates for installation message, click go online .
    • Click upgrade when the which type of installation you want? appears

    Please let us know if this solves the problem for you.

    Matt
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Help with timezone and error of memory in Outlook 2007

    Hello, I tried to solve a problem on the computer of the employee which I believe is coming from Outlook.

    I have just put up with this "new" computer (adopted by an employee of the precedent). I reinstalled Windows XP, reformatting the HD, installed all the drivers and software. There was no problem with the computer until he started to use it, the first day, I think was good, but over two days the computer began to freeze periodically - so that you cannot move the mouse or to do something but hold the power button to turn off the PC. And the problem is becoming more and more common, and time passes.

    It gets an error in Outlook 2007, something about a time zone adjustment and now it will update all appointments in the calendar, and it is always immediately followed by an "out of memory or system resources. Close some windows or programs and try again. "error message - so I think the synchronization schedule, he's trying to do doesn't work. It seems that it is after the error, is it some time later, the computer crashes.

    This morning the problem is also common as 20 minutes between needs to reboot the machine. I have him out of this computer now so that I can help out. By some suggestions on other forums, I removed Office 2007, deleted her outlook profile, reinstalled Office 2007 and created a new Outlook profile for his email. I have worked since his computer for the last two hours now to try to reproduce the problem - it took about an hour, but then it happened again.

    If the problem is related to Outlook, as I suspect then it must use all the resources somewhere, or the calendar/time zone synchronization problem using all resources. This first hour when the machine did not plant was when Outlook has been download still all his e-mail from the Exchange Server, almost as soon as the full download of the error appeared. I noticed something like 1 000 + items in one of its RSS feeds, so I disabled them for now, but I got the time zone / error of memory still. The OST file is about 1 GB in size.

    He has not collapsed again immediately, but I suspect it's just a matter of time as before. If anyone has any suggestions I would be very happy, here are a few other statistics relating to the computer:

    Windows XP Professional SP3

    Processor Intel Dual @1.6 GHz

    2 GB of Ram

    70 GB of free disk space

    Hello

    Your question of Windows is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public. Please post your question in the TechNet forum.
    http://social.technet.Microsoft.com/forums/en-us/category/officeitpro
    http://social.technet.Microsoft.com/forums/en-us/category/windowsxpitpro

  • Help with Windows Update error 80070026

    Hello, new here, but really need some advice or help...
    For some reasonI cannot get to my updates.  Everyway that I try to run my automatic updates for windows I get an instant error with the error Code 80070026.  I am running Vista with service pack 1 and my last successful update was in November.  I do not know there is an update for me who keeps my computer at risk or with this problem.  Advice or assistance on the issue would be greatly appreciated.

    -----

  • Help with Bus 7204VXR error

    Hello

    I got this router crash a few times a couple of days, but has collapsed since. Here is the HS worm showing the bus error:

    Cisco IOS Software, software 7200 (C7200-JK9S-M), Version 12.4 (3) VERSION of the SOFTWARE (fc2)
    Technical, support httpwww.cisco.comtechsupport
    Copyright (c) 1986-2005 by Cisco Systems, Inc.
    Updated Saturday, July 22 05 0911 by hqluong

    ROM system Bootstrap, Version 12.1 (20000710044039) [nlaw-121E_npeb 117], SOFTWARE DEVELOPMENT
    Software BOOTLDR of 7200 (C7200-KBOOT-M), Version 12.3 (26), VERSION of the SOFTWARE (fc2)

    7200vxr1 operating time is 2 days, 2 hours, 17 minutes
    System returned to ROM by bus to the 0x6084C0E4 PC error, address 0xFFF0 213620UTC MON Sep 12 2016
    Reboot system 213830 UTC MON Sep 12 2016
    System image file is disk0c7200-jk9s - mz.124 - 3.bin

    And here is the result of stacks of show:

    Minimum factory chimneys
    Name FreeSize
    DHCPD 1128012000 receive
    background charger 5913660000 script
    23123000 booklet allegro init
    41846000 update prst
    Error message 43086000 DIB
    Init 322012000
    51526000 RADIUS INITCONFIG
    22683000 rom randomly update
    TCP 3484436000 command
    Exec virtual 630812000
    5702460000 AFW_application_process

    Interrupt level piles
    Level gave the name of UnusedSize
    1 1044914134 74689000 network interfaces
    2 111040 85729000 DMATimer interruption
    3 0 90009000 PA Int management Manager
    4 736 86449000 console Uart
    5 0 90009000 OIRError interruption
    7 45261558 85729000 NMI interrupt handler

    System has been restarted by bus to the 0x6084C0E4 PC error, address 0xFFF0 213620 UTC MON Sep 12 2016
    7200 (C7200-JK9S-M) software, Version 12.4 (3) VERSION of the SOFTWARE (fc2)
    Technical, support httpwww.cisco.comtechsupport
    Updated Saturday, July 22 05 0911 by hqluong
    Image text-base 0x6000905C, database 0x62AB2000

    The failure of the system stack trace
    FP 0X65F31FA8, RA 0X6084C0E4
    FP 0X65F31FF0, RA 0X61F9AE00
    FP 0X65F32008, RA 0X61F8EA0C
    FP 0X65F32038, RA 0X61FD9F48
    FP 0X65F320A0, RA 0X61FD9A3C
    FP 0X65F320B8, RA 0X61FDC0E8
    FP 0X65F320D8, RA 0X61FBF4D4
    FP 0X65F32100, RA 0X61FC43D8

    I'm not sure if this is pointing to a hardware failure or if it's a bug in the iOS which caused the accident. Advice to get me in the right direction would be useful.

    Thank you

    Disclaimer

    The author of this announcement offers the information in this publication without compensation and with the understanding of the reader that there is no implicit or explicit adequacy or adaptation to any purpose. Information provided is for information purposes only and should not be interpreted as making the professional advice of any kind. Use information from this announcement is only at risk of the reader.

    RESPONSIBILITY

    Any author will be responsible for any wha2tsoever of damage and interest (including, without limitation, damages for loss of use, data or profits) arising out of the use or inability to use the information in the view even if author has been advised of the possibility of such damages.

    Poster

    Assuming that it's a software problem, and given your IOS version is early in the 12.4 train, you could just upgrade to a later version of 12.4.

  • Help with script from beginner to the data store and hard drives

    Hello

    I am quite new to scripting, and recently, I created a monstrosity below.

    The problem is with the results. I have no idea why in the results I get the name of the virtual machine and its data store over and over again until all disks are highlighted.

    Any help will be very very much appreciated.

    The script:

    $raport = @)

    Foreach ($i in (Get-Content "Y:\vms.txt"))

    {

    $rekord = «»

    $vm = get-vm-name '$i '.

    $dysk1 = $vm | Get-hard drive | where {$_.} Name - eq 'Disk 1'}

    $datastore1 = $dysk1.filename.split("]") [0].split("[") [1]

    $disks = $vm | Get-hard drive

    {foreach ($disk in $disks)

    $hd = «»

    $disksize = ($disk. CapacityGB)

    $hd += $disksize

    {$rekord += $vm.name + ";" + $datastore1 + ";" + $hd}

    $raport += $rekord

    }

    $raport | out-file 'Y:\dyski.csv '.

    The results in csv:

    VM1Name; datastoreName; 60; VM1Name:datastoreName; 50; VM1Name; datastoreName; 40

    VM2Name; datastoreName; 45; VM2Name; datastoreName; 40

    The results of dream in csv:

    VM1Name; datastoreName; 60; 50 40

    VM2Name; datastoreName; 45 40

    etc.

    Try like this

    $raport = @)

    Foreach ($i in (Get-Content "Y:\vms.txt"))

    {

    $rekord = «»

    $vm = get-vm-name '$i '.

    $disk = $vm | Get-hard drive

    $datastore = ($disk | where {$_.}) Name - eq "disk 1" hard}).filename.split ("]") [0].split("[") [1].

    $rekord = "$($vm.)". The name); $($datastore); $(($disk | sélectionnez-ExpandProperty CapacityGB)-join ' |') »

    $raport += $rekord

    }

    $raport | out-file 'Y:\dyski.csv '.

Maybe you are looking for

  • Satellite X 200-21 k: Vista display driver need to play games

    Is there a driver for the display that will work with Vista?Is there any game or 3d application that works fine? I tried about 30 different versions, I tried official (failures even in vista will not work correctly it gives a driver error every minut

  • Why hotmail used do not forget my password ihave to type it every time it's the password

    I don't mind which answer my question someone

  • The IPCC 4.02 to upgrade standard

    Hello We have a customer who currently has the IPCC 4.02_build 005 standard and buys a second server as a standby server for high availability. I think the standard license does not support the HA and customers should fit on improved. My quuestion is

  • deleted files do not go to the trash and empty is greyed out

    Recycle bin problem Hello Whenever I try to delete something, he won't go to the trash. In addition, the option to empty recycle bin is gray, which means it is turned off. If I delete something by accident in this case, how can I get that back? Thank

  • After import

    Version of Lightroom: CC 2015.5.1 [1073342] Windows 8. After update, CC, LR and PS 22/05/2016. The following happened, after I did import any folder appear after 5/22 in the browser. When I close reopen them LR the pictures I imported are no longer t