Posts by PedroCamargo • 11 points
3 posts
-
0
votes1
answer252
viewsA: SQL Error: ORA-29855: Error in executing ODCIINDEXCREATE routine
I was able to find the solution: Commando: GRANT CREATE JOB TO ctx_ix_test Link: http://przemyslawkruglej.com/archive/2013/12/text-index-with-a-sync-parameter/…
-
0
votes1
answer252
viewsQ: SQL Error: ORA-29855: Error in executing ODCIINDEXCREATE routine
I’m trying to create an index on Oracle where it will be automated and run every hour. Query: CREATE INDEX IX_TXT_NOME ON TBL_PESSOA ("TXT_PESSOA") INDEXTYPE IS "CTXSYS"."CONTEXT" PARAMETERS…
-
0
votes4
answers2042
viewsA: Select with 3 tables in SQL SERVER
Also includes a (NOLOCK) not to allocate the tables in processing time SELECT * FROM tblMaquina (NOLOCK) maq INNER JOIN tblEquipamento (NOLOCK) equi ON equi.equId = maq.maqTipoEqui; INNER JOIN…