Posts by diego • 41 points
4 posts
-
0
votes1
answer124
viewsQ: SQL Server vs Mongodb - Disk Size
Today I have a table in SQL Server very large and receives data all the time referring to some factory machine. This is causing a problem of large disk consumption, table size keeps increasing. If I…
-
3
votes1
answer1474
viewsQ: Java Spring Boot - Read a file from the Resources folder inside a . jar
I am writing a class that will read an ETL Pentaho Kettle (transformation). I have put the file that the class will read in the Resources / KTR folder. But when I try to run the code as a java…
-
-1
votes2
answers1938
viewsA: How to Sub Select in SQL
The Join would be a solution as mentioned above, you can also do the following: select * from Vendas where idlivro in ( select idlivro from livros where idgenero = 1 );…
-
1
votes0
answers354
viewsQ: Java Spring Boot - Read file inside the . Jar
I’m doing a class that will read an ETL Pentaho Kettle (transformation), I put the file that the class will read in the Resources/KTR folder. But when I try to run the code as a java application…