# expdp COHERENT (flashback_scn ou flashback_time)

l'option COHERENT n'existe plus sur Datapump. On le simule avec les option FLASHBACK\_\*.

##### FLASHBACK\_TIME

Ajouter aux options de expdp :

```
FLASHBACK_TIME="TO_TIMESTAMP(TO_CHAR(SYSDATE,'YYYY-MM-DD HH24:MI:SS'),'YYYY-MM-DD HH24:MI:SS')"
```

<span class="contentText">ou</span>

```
FLASHBACK_TIME=SYSTIMESTAMP
```

##### FLASHBACK\_SCN

```SQL
SQL> select  current_scn from  v$database; 

CURRENT_SCN
-----------
     728886 
```

Ajouter aux options de expdp :

```
FLASHBACK_SCN=728886
```