Posts by Emerson Rodrigues • 56 points
3 posts
-
1
votes2
answers1980
viewsQ: Generate Inserts from a populated table
I have a populated table and I need to generate the scripts of insert of the data stored in it, I cannot export, it has to be the script of insert into ... Do for select concatenating is very…
-
-2
votes1
answer2628
viewsA: Sql similar to Excel PROCV
SELECT MAX(column_name) FROM table_name;
sqlanswered Emerson Rodrigues 56 -
3
votes2
answers5194
viewsA: What is the purpose of the "persistence.xml" file?
The persistence.xml is a configuration file used by JPA, Hibernate is one of many implementations of JPA. The contents of this file have information like connection url, user, password. Besides…