Tagged Questions
The large-query tag has no wiki summary.
2
votes
2answers
196 views
Large query increases TempDB
I have huge query on my SQL 2005 Server. This have to be run once everyday but when this query runs temp db grows from 2GB to 48GB. What is the best way top optimize or find the reason why tempdb is ...
0
votes
1answer
140 views
SQLAlchemy and max_allowed_packet problem
Due to the nature of my application, I need to support fast inserts of large volumes of data into the database. Using executemany() increases performance, but there's a caveat. For example, MySQL has ...
0
votes
3answers
2k views
Weird JDBC executeQuery exception
I have the following code:
public Object RunQuery(String query) throws Exception{
System.out.println("Trying to run query");
Statement stmt = null;
ResultSet rs = null;
try {
...