Posts by Rodrigo Martins de Souza • 13 points
2 posts
-
1
votes1
answer53
viewsQ: How to Migrate Oracle 11G Long Raw Columns
I need to migrate information from a column of type long raw oracle 11g. CREATE TABLE PROD_IMAGEM ( ID NUMERIC(8), IMAGEM LONG RAW ); CREATE TABLE BKP_TAB_IMAGEM ( ID NUMERIC(8), IMAGEM LONG RAW );…
-
0
votes1
answer51
viewsQ: Return Anniversary of Hiring Weekly in SQL Oracle
I need to provide information on the hiring anniversaries per week. Exemplifying once a week HR will send a message of congratulations to the hiring birthday. I created the following SQL query:…