Tagged Questions

1
vote
0answers
128 views

Need to modify dbmaintain script to handle mysql syntax change

We use dbmaintain to help automate sql table maintenance in our web service project. I just ran into a tricky issue where an upgrade to version 5.5.8 of mysql resulted in a syntax change that broke ...
1
vote
5answers
377 views

Track changes to SQL query in real time

Here is my situation: 1) User A must monitor the results of an sql query Q. 2) User B can modify data that may change the results of Q 3) running Q on the entire database is slow What I would like ...
1
vote
3answers
204 views

incremental SQL query

My application has a fixed set of SQL queries. These queries are run in polling mode, ever 10 seconds. Because of the size of the database (> 100 GB), and the design (uber normalized), I am running ...
1
vote
1answer
90 views

create an auto-incrementing result column in oracle

I'm trying to produce the following results: emp_no, book_no, book_id Where emp_no and book_id are the actual columns on the table, but book_no is a value that is incremental, for example: ...
0
votes
1answer
76 views

SQL one to one without relation

Using Oracle 11 I'm wanting to pull data from a table, and add a column of calculated values which come from a subquery statement. Example Table1 is: COLUMN1: COLUMN2: 1 Group1 3 ...
0
votes
2answers
195 views

Incremental SQL dump of mysql

I am using MySql as a development database as well as on the server where my website is hosted. Now everday I punch new data into the database and save it as SQL dump using SQLyog. But when it comes ...