Posts by cidadaox • 13 points
5 posts
-
0
votes2
answers143
viewsA: Stored Procedure Doesn’t Deliver Results You Should
I fixed it by switching my STORED PROCEDURE to the following: Set @Comando = 'SELECT * FROM ' + @NomeTabela + ' WHERE mov_data BETWEEN ''' + @DataInicial + ''' AND ''' + @DataFinal + ''' AND…
-
0
votes2
answers143
viewsQ: Stored Procedure Doesn’t Deliver Results You Should
-I am very new in SQL, Spring & Java, I am trying to set the results of a list that returns in a Query I created -this query returns a list with the referenced object -the parameters are all…
-
0
votes1
answer625
viewsQ: Error converting varchar data type to float
I have a stored precedent to change a field of tables of varied name: CREATE PROCEDURE usp_alterarCrachaCadAce --PARÂMETROS @NomeTabela VARCHAR(20), @CrachaDestino FLOAT, @CrachaOrigem FLOAT AS…
-
0
votes2
answers143
viewsA: Spring Bean tenantEntityManager error: Unable to find column with Logical name
Solved, simply removed all @JoinColumns and I just left @JoinColumn referencing only the employee code, without the company. Thank you Jonathan! It was very helpful your reply .…
-
0
votes2
answers143
viewsQ: Spring Bean tenantEntityManager error: Unable to find column with Logical name
am having an error while trying to run my JSF application with Spring, more specifically: -I have a method to do a badge search on certain repositories and change them after running method on a…