Ce bouquin est génialissime. Merci d’avoir lu PressCast: The ultimate book..
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT S.TABLE_NAME SOURCE, | |
S.CONSTRAINT_NAME CONTRAINTE, | |
T.TABLE_NAME CIBLE, | |
T.CONSTRAINT_NAME PK | |
FROM USER_CONSTRAINTS S, | |
USER_CONSTRAINTS T | |
WHERE T.TABLE_NAME = '<target_table>' | |
AND T.CONSTRAINT_TYPE = 'P' | |
AND S.R_CONSTRAINT_NAME = T.CONSTRAINT_NAME; | |
--- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.mysema.query.codegen.GenericExporter | |
import com.mysema.query.codegen.Keywords | |
import javax.persistence.Embeddable | |
import javax.persistence.Embedded | |
import javax.persistence.Entity | |
import javax.persistence.MappedSuperclass | |
import javax.persistence.Transient | |
group 'yma' |
NewerOlder