active questions tagged query - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T21:53:50Zhttp://stackoverflow.com/feeds/tag/queryhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/965687/mysqli-error-column-count-doesnt-match-value-count-at-row-10Mysqli Error: Column count doesn't match value count at row 1ct2k72009-06-08T16:12:04Z2009-12-06T15:03:32Z
<p>Below is the mysqli query that is being performed, anyone know what I get such error:</p>
<pre><code>$sql = mysqli_query($db, "INSERT INTO `tbl_bugzilla`
(`id`, `by`, `title`, `content`, `date`, `application`,`priority`, `assigned`, `status`)
VALUES (NULL, '".$_SESSION['exp_user']['username']."', '"
.$_SESSION['exp_user']['username']."', '".$title."', '".$content."','"
.$dt."', '".$_POST['app']."', '".$_POST['priority']."', 'Unassigned', 'Unconfirmed')");
</code></pre>
<p>Error:
<strong>Column count doesn't match value count at row 1</strong></p>
<p>More importantly, could you explain the error so I don't make the same mistake again?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1852685/how-to-get-rows-from-articles-table-10-most-popular-tags0How to get rows from articles table 10 most popular tags?tomaszs22009-12-05T16:43:25Z2009-12-05T18:26:21Z
<p>Hello,</p>
<p>I have in my database a table Articles with Article Name and Article Tags. Article tags is a string column with tags in it like this: "people, life, president". Every article is tagged in this fashion.</p>
<p>Now i would like to get 10 most popular tags for whole population of articles. How to do this?</p>
http://stackoverflow.com/questions/1851756/how-to-hide-querystring-in-asp-net-content-page0how to hide querystring in asp.net content page?Lalit Dhake2009-12-05T10:01:59Z2009-12-05T11:32:16Z
<p>Hi,
i have master-content page scenario.I have a link button on content page. that redirects to other page. but with redirection it carrying the parameters. I want to hide this querystring parameters .I tried with POST() in Form tag of master page . but that does not affecting. What have to do ?</p>
http://stackoverflow.com/questions/1851896/sql-select-statement-string-concatenation0SQL select statement string concatenationunknown (yahoo)2009-12-05T11:05:34Z2009-12-05T11:18:22Z
<p>Can something like this be done with a select statement:</p>
<pre><code>SELECT col1, concat(col2 + ' ') FROM ....
GROUP BY col1
</code></pre>
<p>I know i can use count(col2) or sum(col2) for integers but is there a function for concatenating if the type is nvarchar or nchar?</p>
http://stackoverflow.com/questions/1851834/why-is-using-a-parameterized-query-to-insert-data-into-a-table-faster-than-append1Why is using a parameterized query to insert data into a table faster than appending the values to the query string?luvieere2009-12-05T10:36:55Z2009-12-05T10:55:38Z
<p>Why is using a parameterized query to insert data into a table:</p>
<pre><code>string queryString = "insert into product(id, name) values (@id, @name)";
</code></pre>
<p>faster than appending the values to the query string:</p>
<pre><code>string queryString = "insert into product(id, name) values (" + _id + ", " + _name + ")";
</code></pre>
<p>?</p>
<p>When I use the command in a loop to insert 10K rows, the parameterized query is an order of magnitude faster than the other one.</p>
<p>I know a parametrized query has security and maintainability benefits, and it's the recommended way to use, but now I'm interested in an explanation on why is it that much faster?</p>
http://stackoverflow.com/questions/1851781/transpose-a-row-into-columns-with-mysql-without-using-unions0Transpose a row into columns with MySQL without using UNIONS?Mahmoud Abdelkader2009-12-05T10:10:58Z2009-12-05T10:49:39Z
<p>I have a table that is similar to the following below:</p>
<pre><code> id | cat | one_above | top_level |
0 'printers' 'hardware' 'computers'
</code></pre>
<p>I want to be able to write a query, <strong>without using unions</strong>, that will return me a result set that transposes this table's columns into rows. What this means, is that I want the result to be:</p>
<pre><code> id | cat |
0 'printers'
0 'hardware'
0 'computers'
</code></pre>
<p>Is this possible in MySQL? I can not drop down to the application layer and perform this because I'm feeding these into a search engine that will index based on the id. Various other DBMS have something like PIVOT and UNPIVOT. I would appreciate any insight to something that I'm missing.</p>
<p>Mahmoud</p>
<p>P.S.</p>
<p>I'm considering re-normalization of the database as a last option, since this won't be a trivial task.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1831673/how-i-can-optimize-this-slow-query1How I can optimize this slow query?Paulo Freitas2009-12-02T09:15:05Z2009-12-05T08:43:50Z
<p>I want to know how I can optimize it, preferably without changes in tables structure.</p>
<pre><code>SELECT p.author_id member_id,
m.members_display_name member_name,
COUNT(p.pid) posts
FROM forum_topics t
STRAIGHT_JOIN forum_posts p
STRAIGHT_JOIN forum_members m
WHERE p.author_id != 0
AND p.author_id = m.member_id
AND p.new_topic = 0
AND t.forum_id = 120
AND t.tid = p.topic_id
GROUP BY p.author_id
ORDER BY posts DESC
LIMIT 1
</code></pre>
<p>Output of <code>EXPLAIN</code> is:</p>
<pre><code>-------------------------------------------------------------------------------
EXPLAIN
SELECT p.author_id member_id,
m.members_display_name member_name,
COUNT(p.pid) posts
FROM forum_topics t
STRAIGHT_JOIN forum_posts p
STRAIGHT_JOIN forum_members m
WHERE p.author_id != 0
AND p.author_id = m.member_id
AND p.new_topic = 0
AND t.forum_id = 120
AND t.tid = p.topic_id
GROUP BY p.author_id
ORDER BY posts DESC
LIMIT 1\G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: t
type: ref
possible_keys: PRIMARY,forum_id,last_post
key: forum_id
key_len: 2
ref: const
rows: 28070
Extra: Using temporary; Using filesort
*************************** 2. row ***************************
id: 1
select_type: SIMPLE
table: p
type: ref
possible_keys: author_id,topic_id
key: topic_id
key_len: 4
ref: forumwmo.t.tid
rows: 5
Extra: Using where
*************************** 3. row ***************************
id: 1
select_type: SIMPLE
table: m
type: eq_ref
possible_keys: PRIMARY
key: PRIMARY
key_len: 3
ref: forumwmo.p.author_id
rows: 1
Extra:
3 rows in set (0.00 sec)
</code></pre>
<p>Table structure is:</p>
<pre><code>SHOW CREATE TABLE forum_members\G
*************************** 1. row ***************************
Table: forum_members
Create Table: CREATE TABLE `forum_members` (
`member_id` mediumint(8) NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL DEFAULT '',
`member_group_id` smallint(3) NOT NULL DEFAULT '0',
`email` varchar(150) NOT NULL DEFAULT '',
`joined` int(10) NOT NULL DEFAULT '0',
`ip_address` varchar(16) NOT NULL DEFAULT '',
`posts` mediumint(7) DEFAULT '0',
`title` varchar(64) DEFAULT NULL,
`allow_admin_mails` tinyint(1) DEFAULT NULL,
`time_offset` varchar(10) DEFAULT NULL,
`hide_email` varchar(8) DEFAULT NULL,
`email_pm` tinyint(1) DEFAULT NULL,
`email_full` tinyint(1) DEFAULT NULL,
`skin` smallint(5) DEFAULT NULL,
`warn_level` int(10) DEFAULT NULL,
`warn_lastwarn` int(10) NOT NULL DEFAULT '0',
`language` varchar(32) DEFAULT NULL,
`last_post` int(10) DEFAULT NULL,
`restrict_post` varchar(100) NOT NULL DEFAULT '0',
`view_sigs` tinyint(1) DEFAULT '1',
`view_img` tinyint(1) DEFAULT '1',
`view_avs` tinyint(1) DEFAULT '1',
`view_pop` tinyint(1) DEFAULT '1',
`bday_day` int(2) DEFAULT NULL,
`bday_month` int(2) DEFAULT NULL,
`bday_year` int(4) DEFAULT NULL,
`msg_count_new` int(2) NOT NULL DEFAULT '0',
`msg_count_total` int(3) NOT NULL DEFAULT '0',
`msg_count_reset` int(1) NOT NULL DEFAULT '0',
`msg_show_notification` int(1) NOT NULL DEFAULT '0',
`misc` varchar(128) DEFAULT NULL,
`last_visit` int(10) DEFAULT '0',
`last_activity` int(10) DEFAULT '0',
`dst_in_use` tinyint(1) DEFAULT '0',
`view_prefs` varchar(64) DEFAULT '-1&-1',
`coppa_user` tinyint(1) DEFAULT '0',
`mod_posts` varchar(100) NOT NULL DEFAULT '0',
`auto_track` varchar(50) DEFAULT '0',
`org_perm_id` varchar(255) DEFAULT '',
`temp_ban` varchar(100) DEFAULT '0',
`sub_end` int(10) NOT NULL DEFAULT '0',
`no_sig_lims` tinyint(1) NOT NULL DEFAULT '0',
`login_anonymous` char(3) NOT NULL DEFAULT '0&0',
`ignored_users` text,
`mgroup_others` varchar(255) NOT NULL DEFAULT '',
`member_login_key` varchar(32) NOT NULL DEFAULT '',
`member_login_key_expire` int(10) NOT NULL DEFAULT '0',
`subs_pkg_chosen` smallint(3) NOT NULL DEFAULT '0',
`has_blog` tinyint(1) NOT NULL DEFAULT '0',
`members_auto_dst` tinyint(1) NOT NULL DEFAULT '1',
`members_cache` mediumtext,
`members_disable_pm` int(1) NOT NULL DEFAULT '0',
`members_display_name` varchar(255) NOT NULL DEFAULT '',
`members_seo_name` varchar(255) NOT NULL DEFAULT '',
`members_created_remote` tinyint(1) NOT NULL DEFAULT '0',
`members_editor_choice` char(3) NOT NULL DEFAULT 'std',
`members_profile_views` int(10) unsigned NOT NULL DEFAULT '0',
`members_l_display_name` varchar(255) NOT NULL DEFAULT '0',
`members_l_username` varchar(255) NOT NULL DEFAULT '0',
`failed_logins` text,
`failed_login_count` smallint(3) NOT NULL DEFAULT '0',
`has_gallery` int(1) DEFAULT '0',
`members_pass_hash` varchar(32) NOT NULL DEFAULT '',
`members_pass_salt` varchar(5) NOT NULL DEFAULT '',
`member_banned` tinyint(1) NOT NULL DEFAULT '0',
`identity_url` text,
`member_uploader` varchar(32) NOT NULL DEFAULT 'default',
`members_bitoptions` int(10) unsigned NOT NULL DEFAULT '0',
`fb_uid` bigint(20) NOT NULL DEFAULT '0',
`fb_emailhash` varchar(60) NOT NULL DEFAULT '',
`fb_emailallow` int(1) NOT NULL DEFAULT '0',
`fb_lastsync` int(10) NOT NULL DEFAULT '0',
`members_day_posts` varchar(32) NOT NULL DEFAULT '0,0',
`live_id` varchar(32) DEFAULT NULL,
PRIMARY KEY (`member_id`),
KEY `mgroup` (`member_group_id`),
KEY `bday_day` (`bday_day`),
KEY `bday_month` (`bday_month`),
KEY `members_l_display_name` (`members_l_display_name`),
KEY `members_l_username` (`members_l_username`),
KEY `member_banned` (`member_banned`),
KEY `members_bitoptions` (`members_bitoptions`),
KEY `ip_address` (`ip_address`)
) ENGINE=MyISAM AUTO_INCREMENT=101965 DEFAULT CHARSET=latin1
1 row in set (0.00 sec)
-------------------------------------------------------------------------------
SHOW CREATE TABLE forum_posts\G
*************************** 1. row ***************************
Table: forum_posts
Create Table: CREATE TABLE `forum_posts` (
`append_edit` tinyint(1) DEFAULT '0',
`edit_time` int(10) DEFAULT NULL,
`pid` int(10) NOT NULL AUTO_INCREMENT,
`author_id` mediumint(8) NOT NULL DEFAULT '0',
`author_name` varchar(32) DEFAULT NULL,
`use_sig` tinyint(1) NOT NULL DEFAULT '0',
`use_emo` tinyint(1) NOT NULL DEFAULT '0',
`ip_address` varchar(16) NOT NULL DEFAULT '',
`post_date` int(10) DEFAULT NULL,
`icon_id` smallint(3) DEFAULT NULL,
`post` mediumtext,
`queued` tinyint(1) NOT NULL DEFAULT '0',
`topic_id` int(10) NOT NULL DEFAULT '0',
`post_title` varchar(255) DEFAULT NULL,
`new_topic` tinyint(1) DEFAULT '0',
`edit_name` varchar(255) DEFAULT NULL,
`post_parent` int(10) NOT NULL DEFAULT '0',
`post_key` varchar(32) NOT NULL DEFAULT '0',
`post_htmlstate` smallint(1) NOT NULL DEFAULT '0',
`post_edit_reason` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`pid`),
KEY `author_id` (`author_id`,`topic_id`),
KEY `post_date` (`post_date`),
KEY `topic_id` (`topic_id`,`queued`,`pid`,`post_date`),
KEY `post_key` (`post_key`),
KEY `ip_address` (`ip_address`)
) ENGINE=MyISAM AUTO_INCREMENT=988489 DEFAULT CHARSET=latin1
1 row in set (0.00 sec)
-------------------------------------------------------------------------------
SHOW CREATE TABLE forum_topics\G
*************************** 1. row ***************************
Table: forum_topics
Create Table: CREATE TABLE `forum_topics` (
`tid` int(10) NOT NULL AUTO_INCREMENT,
`title` varchar(70) NOT NULL DEFAULT '',
`description` varchar(250) DEFAULT NULL,
`state` varchar(8) DEFAULT NULL,
`posts` int(10) DEFAULT NULL,
`starter_id` mediumint(8) NOT NULL DEFAULT '0',
`start_date` int(10) DEFAULT NULL,
`last_poster_id` mediumint(8) NOT NULL DEFAULT '0',
`last_post` int(10) DEFAULT NULL,
`icon_id` tinyint(2) DEFAULT NULL,
`starter_name` varchar(255) DEFAULT NULL,
`last_poster_name` varchar(255) DEFAULT NULL,
`poll_state` varchar(8) DEFAULT NULL,
`last_vote` int(10) DEFAULT NULL,
`views` int(10) DEFAULT '0',
`forum_id` smallint(5) NOT NULL DEFAULT '0',
`approved` tinyint(1) NOT NULL DEFAULT '0',
`author_mode` tinyint(1) DEFAULT NULL,
`pinned` tinyint(1) NOT NULL DEFAULT '0',
`moved_to` varchar(64) DEFAULT NULL,
`total_votes` int(5) NOT NULL DEFAULT '0',
`topic_hasattach` smallint(5) NOT NULL DEFAULT '0',
`topic_firstpost` int(10) NOT NULL DEFAULT '0',
`topic_queuedposts` int(10) NOT NULL DEFAULT '0',
`topic_rating_total` smallint(5) unsigned NOT NULL DEFAULT '0',
`topic_rating_hits` smallint(5) unsigned NOT NULL DEFAULT '0',
`topic_open_time` int(10) NOT NULL DEFAULT '0',
`topic_close_time` int(10) NOT NULL DEFAULT '0',
`title_seo` varchar(250) NOT NULL DEFAULT '',
`seo_last_name` varchar(255) NOT NULL DEFAULT '',
`seo_first_name` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`tid`),
KEY `topic_firstpost` (`topic_firstpost`),
KEY `forum_id` (`forum_id`,`pinned`,`approved`),
KEY `last_post` (`forum_id`,`pinned`,`last_post`),
KEY `starter_id` (`starter_id`,`forum_id`,`approved`),
KEY `last_post_sorting` (`last_post`,`forum_id`),
KEY `start_date` (`start_date`),
FULLTEXT KEY `title` (`title`)
) ENGINE=MyISAM AUTO_INCREMENT=227233 DEFAULT CHARSET=latin1
1 row in set (0.00 sec)
</code></pre>
<p>Table properties are:</p>
<pre><code>SHOW TABLE STATUS LIKE 'forum_members'\G
*************************** 1. row ***************************
Name: forum_members
Engine: MyISAM
Version: 10
Row_format: Dynamic
Rows: 64866
Avg_row_length: 257
Data_length: 16688164
Max_data_length: 281474976710655
Index_length: 6540288
Data_free: 0
Auto_increment: 101965
Create_time: 2009-12-02 05:45:59
Update_time: 2009-12-02 05:46:07
Check_time: 2009-12-02 05:49:23
Collation: latin1_swedish_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
-------------------------------------------------------------------------------
SHOW TABLE STATUS LIKE 'forum_posts'\G
*************************** 1. row ***************************
Name: forum_posts
Engine: MyISAM
Version: 10
Row_format: Dynamic
Rows: 581777
Avg_row_length: 720
Data_length: 419170168
Max_data_length: 281474976710655
Index_length: 46439424
Data_free: 0
Auto_increment: 988489
Create_time: 2009-12-02 05:47:04
Update_time: 2009-12-02 05:48:13
Check_time: 2009-12-02 05:49:28
Collation: latin1_swedish_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
-------------------------------------------------------------------------------
SHOW TABLE STATUS LIKE 'forum_topics'\G
*************************** 1. row ***************************
Name: forum_topics
Engine: MyISAM
Version: 10
Row_format: Dynamic
Rows: 117458
Avg_row_length: 144
Data_length: 17004836
Max_data_length: 281474976710655
Index_length: 14105600
Data_free: 0
Auto_increment: 227233
Create_time: 2009-12-02 05:48:38
Update_time: 2009-12-02 05:48:43
Check_time: 2009-12-02 05:49:28
Collation: latin1_swedish_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
</code></pre>
<p>Other configuration details:</p>
<pre><code>SHOW VARIABLES LIKE '%buffer%'\G
*************************** 1. row ***************************
Variable_name: bulk_insert_buffer_size
Value: 8388608
*************************** 2. row ***************************
Variable_name: innodb_buffer_pool_size
Value: 8388608
*************************** 3. row ***************************
Variable_name: innodb_log_buffer_size
Value: 1048576
*************************** 4. row ***************************
Variable_name: join_buffer_size
Value: 131072
*************************** 5. row ***************************
Variable_name: key_buffer_size
Value: 8384512
*************************** 6. row ***************************
Variable_name: myisam_sort_buffer_size
Value: 8388608
*************************** 7. row ***************************
Variable_name: net_buffer_length
Value: 16384
*************************** 8. row ***************************
Variable_name: pbxt_log_buffer_size
Value: 256K
*************************** 9. row ***************************
Variable_name: pbxt_transaction_buffer_size
Value: 1MB
*************************** 10. row ***************************
Variable_name: preload_buffer_size
Value: 32768
*************************** 11. row ***************************
Variable_name: read_buffer_size
Value: 131072
*************************** 12. row ***************************
Variable_name: read_rnd_buffer_size
Value: 262144
*************************** 13. row ***************************
Variable_name: sort_buffer_size
Value: 2097144
*************************** 14. row ***************************
Variable_name: sql_buffer_result
Value: OFF
14 rows in set (0.00 sec)
</code></pre>
http://stackoverflow.com/questions/1839196/sql-query-to-replace-all-occurrences-of-space-in-a-table-with-underscore0SQL query to replace all occurrences of space in a table with underscoresilverkid2009-12-03T10:55:48Z2009-12-05T01:13:36Z
<p>How can I write a SQL query to replace all occurrences of space in a table with underscore without writing individual statements for each column?</p>
http://stackoverflow.com/questions/1850555/sql-query-solution0Sql Query Solutionsagar2009-12-05T00:25:46Z2009-12-05T00:42:13Z
<p>I have a query as follows.</p>
<pre><code>select strftime('%Y-%m',A.traDate) as Month,sum(A.TraAmt) as Total,C.GroupType from
TransactionTbl A left join TransactionCategory B on A.CategoryID = B.CategoryID left join
CategoryGroup C on B.CatGRoupID=C.CatGRoupID where A.UserID=1 and A.ProfileID=1 and
date(A.TraDate) between date('2009-12-01') and date('2010-11-01') group by C.GroupType,
strftime('%m',A.traDate) order by Month
</code></pre>
<p>Above query gives result as follows,</p>
<pre><code>Month Total C.GroupType
----- ----- -----------
2009-12 4100 Expense
2009-12 8000 Income
2010-01 200 Expense
2010-01 2000 Income
2010-02 3500 Expense
2010-02 7500 Income
</code></pre>
<p>Oke, & I want solution like this.</p>
<pre><code> Month Income Expense
----- ----- -----------
2009-12 8000 4100
2010-01 8000 200
2010-02 7500 3500
</code></pre>
<p>I am trying hard to get output like this, but I could find any kind of solution.</p>
<p>Would some one help me please?</p>
<p>I am an iPhone developer & I know a little about sql queries.</p>
<p>Thanks in advance for sharing your knowledge.</p>
<p>Sagar</p>
http://stackoverflow.com/questions/1850538/custom-query-pagination-cakephp0Custom Query Pagination CakephpHooman Ahmadi2009-12-05T00:19:30Z2009-12-05T00:24:39Z
<p>I have a custom query in my controller and I would like to implement the custom query pagination I found on cakephp.org but their example is not similar to mine. Can someone please help me paginate this result in my view:</p>
<pre><code> $cars = $this->Car->query(" select Car.id, Car.make, Car.model, Car.year, Car.description, CarImage.thumbnail
from cars Car
inner join car_images CarImage on Car.default_image_id = CarImage.id
where Car.make like '" . $category . "'
order by Car.created DESC
limit 10");
$this->set('cars', $cars);
</code></pre>
http://stackoverflow.com/questions/329931/sql-select-join-is-it-possible-to-prefix-all-columns-as-prefix1SQL select join: is it possible to prefix all columns as 'prefix.*'?Frederic Daoud2008-12-01T03:15:58Z2009-12-04T22:51:22Z
<p>I'm wondering if this is possible in SQL. Say you have two tables A and B, and you do a select on table A and join on table B:</p>
<pre><code>SELECT a.*, b.* FROM TABLE_A a JOIN TABLE_B b USING (some_id);
</code></pre>
<p>If table A has columns 'a_id', 'name', and 'some_id', and table B has 'b_id', 'name', and 'some_id', the query will return columns 'a_id', 'name', 'some_id', 'b_id', 'name', 'some_id'. Is there any way to prefix the column names of table B without listing every column individually? The equivalent of this:</p>
<pre><code>SELECT a.*, b.b_id as 'b.b_id', b.name as 'b.name', b.some_id as 'b.some_id'
FROM TABLE_A a JOIN TABLE_B b USING (some_id);
</code></pre>
<p>But, as mentioned, without listing every column, so something like:</p>
<pre><code>SELECT a.*, b.* as 'b.*'
FROM TABLE_A a JOIN TABLE_B b USING (some_id);
</code></pre>
<p>Basically something to say, "prefix every column returned by b.* with 'something'". Is this possible or am I out of luck?</p>
<p>Thanks in advance for your help!</p>
<p>EDIT: advice on not using SELECT * and so on is valid advice but not relevant in my context, so please stick to the problem at hand -- is it possible to add a prefix (a constant specified in the SQL query) to all the column names of a table in a join?</p>
<p>EDIT: my ultimate goal is to be able to do a SELECT * on two tables with a join, and be able to tell, from the names of the columns I get in my result set, which columns came from table A and which columns came from table B. Again, I don't want to have to list columns individually, I need to be able to do a SELECT *.</p>
http://stackoverflow.com/questions/1848025/how-do-i-query-exchange-for-all-events-on-a-calendar0How do I query exchange for all events on a calendar?Brian Scott2009-12-04T16:18:14Z2009-12-04T19:30:24Z
<p>I'm currently writing a room booking diary template for an ASP .Net CMS and I need to be able to retrieve the information from an exchange calendar. </p>
<p>Can anyone point me in the direction of some good sample code which lets me query an individual calendar based on a month parameter? Also, is it possible to provide a parameter to the query to either include or exclude those appointments / meetings which are only tentatively agreed?</p>
<p>Finally, are there any good jQuery based calendar plugins which are ie6 compatible for when I wish to display the resulting information?</p>
<p>Thanks a lot,</p>
<p>Brian.</p>
http://stackoverflow.com/questions/1848321/sql-find-missing-data-negative-search0SQL - Find missing data / negative searchDarrenNavitas2009-12-04T17:02:39Z2009-12-04T17:15:38Z
<p>Hi - following on from my other post... I have a table that uses two fields to make a primary key...</p>
<pre><code>TravelEventID RemarkNo Keyword Text
0001 1 TVL LOWCOST BOOKING
0001 2 TVL CREDIT CARD USED
0001 3 PSG COST CENTRE REQUIRED
0001 4 PSG EMPLOYEE NUM REQUIRED
0002 1 TVL CREDIT CARD USED
0002 2 AGT BOOKED BY AGENT
0002 3 AGT CONFIRM WITH AIRLINE
0002 4 TVL LOWEST FARE CONFIRMED
0002 5 TVL NO CANCELLATION CHARGE
0003 1 TVL LOWCOST BOOKING
0003 2 TVL CARRIER : EASYJET
0003 3 TVL LOWEST FARE CONFIRMED
0004 1 TVL LOWCOST BOOKING
0004 2 TVL CREDIT CARD USED
</code></pre>
<p>I need to extract the TravelEventID where the Text does not contain LOWCOST BOOKING. I.E from the example table I would want only 0002.</p>
<p>I try and perform a query where Text <> 'LOWCOST BOOKING' however that obviously matches on most of the rows and as a result I get back all the TravelEventIDs.</p>
<p>Hope I've explained myself well!
Cheers
Darren</p>
http://stackoverflow.com/questions/1843222/do-link-tables-need-a-meaningless-primary-key-field6Do link tables need a meaningless primary key field?tvanover2009-12-03T21:57:19Z2009-12-04T15:47:04Z
<p>I am working on a couple of link tables and I got to thinking (Danger Will Robinson, Danger) what are the possible structures of a link table and what are their pro's and con's.</p>
<p>I came up with a few possible strictures for the link table:</p>
<h3>Traditional 3 column model</h3>
<ul>
<li>id - auto-numbered PRIMARY</li>
<li>table1fk - foreign key</li>
<li>table2fk - foreign key</li>
</ul>
<p>It's a classic, in most of the books, 'nuff said.</p>
<h3>Indexed 3 column model</h3>
<ul>
<li>id - auto-numbered PRIMARY</li>
<li>table1fk - foreign key <code>INDEX ('table1fk')</code></li>
<li>table2fk - foreign key <code>INDEX ('table2fk')</code></li>
</ul>
<p>In my own experience, the fields that you are querying against are not indexed in the traditional model. I have found that indexing the foreign key fields does improve performance as would be expected. Not a major change but a nice optimizing tweak.</p>
<h3>Composite key 2 columns <code>ADD PRIMARY KEY ('table1fk' , 'table2fk')</code></h3>
<ul>
<li>table1fk - foreign key</li>
<li>table2fk - foreign key</li>
</ul>
<p>With this I use a composite key so that a record from table1 can only be linked to a record on table2 once. Because the key is composite I can add records (1,1), (1,2), (2,2) without any duplication errors.</p>
<p>Any potential problems with the composite key 2 columns option? Is there an indexing issue that this might cause? A performance hit? Anything that would disqualify this as a possible option?</p>
http://stackoverflow.com/questions/1840755/vba-string-length-problem0VBA string length problemzohair2009-12-03T15:42:33Z2009-12-04T14:55:52Z
<p>Hi,</p>
<p>I have an Access application where everytime a user enters the application, it makes a temp table for that user called 'their windows login name'_Temp. In one of my reports I need to query using that table, and I can't just make a query and set it as the recourdsource of the report, since the name of the table is always different. </p>
<p>What I tried then was to programatically set the recordset of the report by running the query and setting the form's recordset as the query's recordset. When I tried this, it kept giving me an error about the query. </p>
<p>I tried to debug, and I found that the string variable isn't able to contain the whole query at once. When I ran it with break points and added a watch for the string variable, it shows me that it cuts off the query somewhere in the middle.</p>
<p>I've experienced this problem before, but that was with an UPDATE query. Then, I just split it into two queries and ran both of them separately. This one is a SELECT query, and there's no way I can split it. Please help!</p>
<p>Thank you</p>
<p>Heres what I've tried doing:</p>
<p>ReturnUserName is a function in a module that returns just the login id of the user</p>
<pre><code>Private Sub Report_Open(Cancel As Integer)
Dim strQuery As String
Dim user As String
user = ReturnUserName
strQuery = "SELECT " & user & "_Temp.EmpNumber, [FName] & ' ' & [LName] AS [Employee Name], " & _
"CourseName, DateCompleted, tblEmp_SuperAdmin.[Cost Centre] " & _
"FROM (tblCourse INNER JOIN (" & user & "_Temp INNER JOIN tblEmpCourses ON " & _
user & "_Temp.EmpNumber = EmpNo) ON tblCourse.CourseID = tblEmpCourses.CourseID) " & _
"INNER JOIN tblEmp_SuperAdmin ON " & user & "_Temp.EmpNumber = tblEmp_SuperAdmin.EmpNumber" & _
"WHERE (((" & user & "_Temp.EmpNumber) = [Forms]![Reports]![txtEmpID].[Text])) " & _
"ORDER BY CourseName;"
Dim rs As ADODB.Recordset
Set rs = New ADODB.Recordset
Dim rsCmd As ADODB.Command
Set rsCmd = New ADODB.Command
rsCmd.ActiveConnection = CurrentProject.Connection
rsCmd.CommandText = strQuery
rs.Open rsCmd
Me.Recordset = rs
rs.Close
End Sub
</code></pre>
<p>This what strQuery contains when I add a breakpoint on <code>rsCmd.CommandText = strQuery</code>:</p>
<blockquote>
<p>SELECT myusername_Temp.EmpNumber, [FName]
& ' ' & [LName] AS [Employee Name],
CourseName, DateCompleted,</p>
<p>tblEmp_SuperAdmin.[Cost Centre] FROM</p>
<p>(tblCourse INNER JOIN (myusername_Temp
INNER JOIN tblEmpCourses ON</p>
<p>myusername_Temp.EmpNumber = EmpNo) ON
tblCourse.CourseID=</p>
</blockquote>
<p>(It's all one line, but I've written it like this because the underscores italicize the text)</p>
<p>And the error I get says Run Time Error: Join not Supported. </p>
http://stackoverflow.com/questions/1838962/sql-query-to-show-all-records-except-for-certain-records0sql query to show all records except for certain recordssilverkid2009-12-03T10:13:32Z2009-12-04T09:25:19Z
<p>i have an ms-access table</p>
<pre><code>TableA
MSN PR
11 -
13 A
12 Dead
14 B
15 C
</code></pre>
<p>How can i write an sql query to remove records in "-" and "Dead" occurances in PR collumn. so that query result should be</p>
<pre><code>MSN PR
13 A
14 B
15 C
</code></pre>
<p>any help appreciated</p>
http://stackoverflow.com/questions/1839453/how-to-convert-result-of-an-select-sql-query-into-a-new-table-in-ms-access1how to convert result of an select sql query into a new table in ms accesssilverkid2009-12-03T11:49:34Z2009-12-04T09:14:42Z
<p>how to convert result of an select sql query into a new table in msaccess ?</p>
http://stackoverflow.com/questions/1845334/mysql-3-table-overlapping-query0MySQL 3 table overlapping queryStuart2009-12-04T07:11:41Z2009-12-04T07:18:21Z
<p>Hello, another 3 table query here. I have a table reservation, customer_service, and billing.</p>
<p>I am trying to select roomtype from reservation and some other fields from billing "ON" r.ID = b.rID and the same for customer_services (shown below). </p>
<p>The first part before the union works fine, but when adding the union I get a weird side effect that any result with a duplicate r.Roomtype, b.Quantity, b.UnitPrice, and b.Total get dropped. </p>
<p>How do I avoid that, since they will have different b.reservationID and I want the duplicates?</p>
<pre><code>SELECT r.RoomType, b.Quantity, b.UnitPrice, b.Total FROM Billing b, Reservation r
WHERE b.ReservationID = r.ReservationID
AND b.UserName = "Stuart"
AND b.Paid = "0"
UNION
SELECT cs.ServiceName, b.Quantity, b.UnitPrice, b.Total FROM Customer_Service cs, Billing b
WHERE b.CustomerServiceID = cs.CustomerServiceID
AND b.UserName = "Stuart"
AND b.Paid = "0";
</code></pre>
http://stackoverflow.com/questions/1842228/how-to-write-this-linq-query1How to write this linq query?Nicolas Cadilhac2009-12-03T19:15:08Z2009-12-03T21:21:01Z
<p>I have a first query that returns a set of entities:</p>
<pre><code>var resultSet = ....query....ToList();
</code></pre>
<p>which would return A, B, C, D, E</p>
<p>The entities inside this set are organized into chains because they have a reference (prevEntityId) pointing to the same type of entity, i.e.:</p>
<p>A -> B -> D</p>
<p>C -> E</p>
<p>I would like to write a second query so that only A and C are now returned but I have no idea how to write it.</p>
<p>I would prefer your answer with linq methods (like .Where()) instead of the new linq syntax.</p>
<p>Thank you</p>
<p><strong>Update</strong>: sorry I initially used the wrong vocabulary in my question with the term "foreign key". Actually an entity has a direct reference to the previous entity so to elect an entity in the second query, there must be no other entity that references it. I thought it would take 2 queries but if you think it can be done in one...</p>
http://stackoverflow.com/questions/1841183/decent-visual-sql-query-builder1Decent Visual SQL query Builderkurast2009-12-03T16:41:03Z2009-12-03T17:50:27Z
<p>I am a code developer, not a DBA, and I tend to get lost with loooong SQL queries, when I use many joins (10 joins is pretty common for me). </p>
<p>I would like to find a Visual SQL Query Builder (free if possible) that could connect to Oracle and see all the tables there, so I would only select visually my keys that link the Joins, and select the fields I want to be shown.</p>
http://stackoverflow.com/questions/1808366/sql-server-kill-process-using-stored-procedure0SQL Server: Kill Process using Stored ProcedureAbs2009-11-27T12:05:14Z2009-12-03T16:18:53Z
<p>Hello all,</p>
<p>I want to modify the following as it doesn't seem to kill processes - I think its supposed to disconnect users (is this the same?). I want to be able to kill all process for a particular database - how can I modify the below:</p>
<pre><code>create procedure [dbo].[sp_killusers](@database varchar(30))
as
----------------------------------------------------
-- * Created By David Wiseman, Updated 19/11/2006
-- * http://www.wisesoft.co.uk
-- * This procedure takes the name of a database as input
-- * and uses the kill statment to disconnect them from
-- * the database.
-- * PLEASE USE WITH CAUTION!!
-- * Usage:
-- * exec sp_killusers 'databasename'
----------------------------------------------------
set nocount on
declare @spid int
declare @killstatement nvarchar(10)
-- Declare a cursor to select the users connected to the specified database
declare c1 cursor for select request_session_id
from sys.dm_tran_locks
where resource_type='DATABASE'
AND DB_NAME(resource_database_id) = @database
open c1
fetch next from c1 into @spid
-- for each spid...
while @@FETCH_STATUS = 0
begin
-- Don't kill the connection of the user executing this statement
IF @@SPID <> @spid
begin
-- Construct dynamic sql to kill spid
set @killstatement = 'KILL ' + cast(@spid as varchar(3))
exec sp_executesql @killstatement
-- Print killed spid
print @spid
end
fetch next from c1 into @spid
end
-- Clean up
close c1
deallocate c1
</code></pre>
<h2>Update</h2>
<p>The above doesn't work i.e. it doesn't kill the process.</p>
<blockquote>
<p>It doesn't kill the process. I look at
the activity monitor and its still
shows the process continuing and I can
see my query still working in the
query window. When I do "kill 53", the
querying stops in the query window and
the process is gone from the activity
monitor! So th kill works but not this procedure why?</p>
</blockquote>
http://stackoverflow.com/questions/1839951/how-to-combine-different-objects-in-ms-access-each-containing-different-queries-i0how to combine different objects in ms-access each containing different queries into one objectsilverkid2009-12-03T13:47:32Z2009-12-03T15:34:33Z
<p>i have created multiple sequential sql query objects for an ms access database. e.g</p>
<p>objectA is named sqlqueryA </p>
<p>and contains the sql code </p>
<pre><code>Select a, b, ........From TableA
</code></pre>
<p>objectB is named sqlqueryB </p>
<p>and contains the sql code </p>
<pre><code>Select a, m, n...... From sqlqueryA
</code></pre>
<p>objectC is named sqlqueryC</p>
<p>and contains the sql code </p>
<pre><code>Select x, y, z ..... from sqlqueryB
</code></pre>
<p>each query is saved as a different object in my ms-access database , how can i create one object containing all queries</p>
http://stackoverflow.com/questions/1840261/mysql-php-how-to-implementing-a-unique-view-system0mysql/php - How to implementing a unique view system?Mark2009-12-03T14:37:53Z2009-12-03T14:54:02Z
<p><strong>Introduction</strong></p>
<p>I am wondering what is the best way to implement a unique views system... I think I know how, so if I could explain how I think to do it and you point out any mistakes or improvements.</p>
<p>obviously I will have to store a log table containing a video id and something which (relatively) uniquely identifies the user. At first I considered a combination of header request and IP but decided to keep it simple and use just IP. Also that way a user can not increase the views of their video by using a different browser.</p>
<p><strong>This is how I would think to do it:</strong></p>
<ol>
<li><p>When a user visits I do a SELECT
similar to this:</p>
<p><code>SELECT 1 FROM tbl_log WHERE IP =
$usersip AND video_id = $video_id</code></p></li>
<li><p>if there is no result then I must
insert a record </p>
<p><code>INSERT into tbl_log (IP,video_id)
VALUES ($usersip, $video_id)</code></p></li>
<li><p>and increase the views by 1</p>
<p><code>SELECT views FROM tbl_video WHERE
video_id = $video_id</code></p>
<p><code>UPDATE tbl_video SET views =
$result['views'] + 1 WHERE video_id
= $video_id</code></p></li>
</ol>
<p><strong>Questions</strong></p>
<ul>
<li><p>I guess I do not want to have<br>
millions of log records slowing down
my site so should I run a cron job to
empty the log table once a day?</p></li>
<li><p>Should I make the views<br>
transactional? (I guess a slightly<br>
depreciated view count is less<br>
important than a slow site because of
row locks)</p></li>
<li><p>Is there a way to reduce the load on
the mysql server.... I fear if every
view requires an increased view count
and an IP log that it will be pretty
expensive. I have seen that youtube<br>
and the like do not update the views
instantly... do they cache the<br>
updates some how and then run them at
once? if so how?</p></li>
<li><p>How efficient is my system? Can you
think of any improvements?</p></li>
</ul>
http://stackoverflow.com/questions/1838818/how-to-add-new-column-in-ms-access-by-matching-values0how to add new column in ms access by matching valuessilverkid2009-12-03T09:42:44Z2009-12-03T10:55:47Z
<p>in an ms access database with two tables </p>
<pre><code>TableA
MSN PR1
12 A
13 B
11 C
14 X
TableB
MSN PR2
14 L
12 M
13 O
11 X
</code></pre>
<p>how can i write an sql query so that PR2 columns gets added to TableA but only after matching the MSN values . so the final TableC would be</p>
<pre><code>TableC
MSN PR1 PR2
12 A M
13 B O
11 C X
14 X L
</code></pre>
<p>any help appreciated</p>
http://stackoverflow.com/questions/1839075/sql-query-to-select-all-columns-in-a-table-except-two-columns1SQL query to select all columns in a table except two columns silverkid2009-12-03T10:34:18Z2009-12-03T10:48:12Z
<p>I have a table in ms-access with column names A to H</p>
<pre><code>TableA
A B C D E F G H
</code></pre>
<p>how can i write a query to select all columns except B and F columns. Query result should be</p>
<pre><code>A C D E G H
</code></pre>
<p>Do we have something like this</p>
<pre><code>select * from TableA except B, F ?
</code></pre>
http://stackoverflow.com/questions/1838146/query-select-sqlite-objective-c-iphone1 query select Sqlite Objective C iphonebabyDeveloper2009-12-03T06:51:24Z2009-12-03T09:23:52Z
<p>hi people!</p>
<p>well, I have problems with my queries,i dont know why!! please help</p>
<p>i try to select an id from a table named moneda and I give the name like parameter,</p>
<p><strong>this is my method with my query :</strong></p>
<pre><code>-(int)ConsultaIdMoneda:(NSString*) nombreMonedaParametro
{
int idMonedaObtenido;
NSLog(@" entre a consultar id de la moneda desde el app delegate");
sqlite3 *database;
const char *path = [[[NSBundle mainBundle] pathForResource:@"database2" ofType:@"sqlite"] UTF8String];
if(sqlite3_open(path, &database) == SQLITE_OK)
{
const char *sqlStatement =[[NSString stringWithFormat:@"Select idMoneda from moneda Where nombre = %@",nombreMonedaParametro] cStringUsingEncoding:NSUTF8StringEncoding];
NSLog(@"%s",sqlStatement);
sqlite3_stmt *compiledStatement;
NSInteger result = sqlite3_prepare_v2(database,sqlStatement, -1, &compiledStatement, NULL);
NSLog(@"%s",sqlStatement);
if(result == SQLITE_OK)
{
idMonedaObtenido = [[NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 0)] intValue];
}
else
{
NSAssert1(0, @"Error . '%s'", sqlite3_errmsg(database));
}
sqlite3_reset(compiledStatement);
sqlite3_finalize(compiledStatement);
}
sqlite3_close(database);
return idMonedaObtenido;
}
</code></pre>
<p><strong>and this is the error:</strong></p>
<pre><code>2009-12-03 00:28:45.715 BCDTravel[1220:20b] *** Assertion failure in -[BCDTravelAppDelegate ConsultaIdMoneda:], /Users/Mely/Desktop/BCDTravel version 45/Bcd/Classes/BCDTravelAppDelegate.m:101
2009-12-03 00:28:45.717 BCDTravel[1220:20b] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Error haciendo el select. 'no such column: euros''
</code></pre>
<p>i think the problem is in this line but i dont know how to slove suggestions pleasee!!</p>
<pre><code>const char *sqlStatement =[[NSString stringWithFormat:@"Select idMoneda from moneda Where nombre = %@",nombreMonedaParametro] cStringUsingEncoding:NSUTF8StringEncoding];
</code></pre>
http://stackoverflow.com/questions/1831987/postgresql-querying-on-multiple-identical-tables0postgresql querying on multiple identical tablesHellnar2009-12-02T10:23:19Z2009-12-02T20:35:15Z
<p>Hello I have several databases, such as <code>mytable_2009_11_19_03</code> where last 2 numbers identify the hour (table for 03:00), now I want to query something from _00 to _23 .
It could be done in such way but it is really clumsy</p>
<pre><code>select * from mytable_2009_11_19_00 where type = 15
UNION
select * from mytable_2009_11_19_01 where type = 15
UNION
...........
select * from mytable_2009_11_19_23 where type = 15
</code></pre>
<p>How could I do it easier?
regards</p>
http://stackoverflow.com/questions/1818314/sql-server-2005-t-sql-problem-need-help-in-omitting-records2SQL Server 2005 T-SQL Problem: Need help in omitting recordsshield212009-11-30T07:29:27Z2009-12-02T16:05:01Z
<p>Good day!</p>
<p>I need help in writing a query.. I have records in a table below.. The condition would be no records should be displayed if the succeeding records' new_state was repeated from the previous records(new_state) and if it is changed in the same date..</p>
<p>here record_id 1 has gone through the ff states: 0->1->2->1->3->4->3 in the same day.. state 1 was changed to state 2 then back to state 1 again (id 2 & 3 would not be displayed).. same with state 3 (id 5 & 6 would not be displayed)..</p>
<pre><code>id | record_id| date_changed | old_state | new_state |
1 | 1 | 2009-01-01 | 0 | 1 |
2 | 1 | 2009-01-01 | 1 | 2 | not displayed
3 | 1 | 2009-01-01 | 2 | 1 | not displayed
4 | 1 | 2009-01-01 | 1 | 3 |
5 | 1 | 2009-01-01 | 3 | 4 | not displayed
6 | 1 | 2009-01-01 | 4 | 3 | not displayed
</code></pre>
<p>so the result would display only 2 records for record_id=1..</p>
<pre><code>id | record_id| date_changed | old_state | new_state |
1 | 1 | 2009-01-01 | 0 | 1 |
4 | 1 | 2009-01-01 | 1 | 3 |
</code></pre>
<p>Here's the code for table creation and data:</p>
<pre><code>IF OBJECT_ID('TempDB..#table','U') IS NOT NULL
DROP TABLE #table
CREATE TABLE #table
(
id INT identity primary key,
record_id INT,
date_changed DATETIME,
old_state INT,
new_state INT
)
INSERT INTO #table(record_id,date_changed,old_state,new_state)
SELECT 1,'2009-01-01',0,1 UNION ALL --displayed
SELECT 1,'2009-01-01',1,2 UNION ALL --not displayed
SELECT 1,'2009-01-01',2,1 UNION ALL --not displayed
SELECT 1,'2009-01-01',1,3 UNION ALL --displayed
SELECT 1,'2009-01-01',3,4 UNION ALL --not displayed
SELECT 1,'2009-01-01',4,3 --not displayed
INSERT INTO #table(record_id,date_changed,old_state,new_state)
SELECT 3,'2009-01-01',0,1 UNION ALL --displayed
SELECT 3,'2009-01-01',1,2 UNION ALL --not displayed
SELECT 3,'2009-01-01',2,3 UNION ALL --not displayed
SELECT 3,'2009-01-01',3,4 UNION ALL --not displayed
SELECT 3,'2009-01-01',4,1 --not displayed
SELECT * FROM #table
</code></pre>
<p>I would appreciate any help..</p>
<h2>Thanks</h2>
<p>For clarity regarding record_id=3.. Given this table:</p>
<pre><code>id | record_id| date_changed | old_state | new_state |
7 | 3 | 2009-01-01 | 0 | 1 |
8 | 3 | 2009-01-01 | 1 | 2 | not displayed
9 | 3 | 2009-01-01 | 2 | 3 | not displayed
10 | 3 | 2009-01-01 | 3 | 4 | not displayed
11 | 3 | 2009-01-01 | 4 | 1 | not displayed
</code></pre>
<p>when running the query for record_id=3, the table result will be:</p>
<pre><code>id | record_id| date_changed | old_state | new_state |
7 | 3 | 2009-01-01 | 0 | 1 |
</code></pre>
<h2>Thanks!</h2>
<p>UPDATE (12/2/2009):</p>
<p><strong><em>Special scenario</em></strong></p>
<pre><code>id | record_id| date_changed | old_state | new_state |
1 | 4 | 2009-01-01 | 0 | 1 | displayed
2 | 4 | 2009-01-01 | 1 | 2 | displayed
3 | 4 | 2009-01-01 | 2 | 3 | not displayed
4 | 4 | 2009-01-01 | 3 | 2 | not displayed
5 | 4 | 2009-01-01 | 2 | 3 | displayed
6 | 4 | 2009-01-01 | 3 | 4 | not displayed
7 | 4 | 2009-01-01 | 4 | 3 | not displayed
</code></pre>
<p>where new_state 3 appears on id 3,5 and 7.. id 3 would not be displayed since it is between id 2 and id 4 which have the same new_state(3).. Then id 5 should be displayed since there is no existing new_state 3 yet..</p>
<p>code snippet:</p>
<pre><code>IF OBJECT_ID('TempDB..#tablex','U') IS NOT NULL
DROP TABLE #tablex
CREATE TABLE #tablex
(
id INT identity primary key,
record_id INT,
date_changed DATETIME,
old_state INT,
new_state INT
)
INSERT INTO #tablex(record_id,date_changed,old_state,new_state)
SELECT 4,'2009-01-01',0,1 UNION ALL --displayed
SELECT 4,'2009-01-01',1,2 UNION ALL --displayed
SELECT 4,'2009-01-01',2,3 UNION ALL --not displayed
SELECT 4,'2009-01-01',3,2 UNION ALL --not displayed
SELECT 4,'2009-01-01',2,3 UNION ALL --displayed
SELECT 4,'2009-01-01',3,4 UNION ALL --not displayed
SELECT 4,'2009-01-01',4,3 --not displayed
</code></pre>
<p>I think the sequence in building the result is important..</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1831723/tool-for-monitoring-sql-query-results-needed1Tool for monitoring SQL query results neededKamil Zadora2009-12-02T09:26:11Z2009-12-02T15:08:35Z
<p>Hi,</p>
<p>I am looking for a tool to monitor results of a periodically run sql query and raise a notification based on the fact that the query returns any results. (any other filters are welcome)</p>
<p>I need to watch a transaction table for errors, and it would be great if my sql query could run in background, refresh itself periodically and show a notification when there are any results.</p>
<p>I need to connect to Oracle DB and I currently use PL/SQL Developer or Oracle SQL Developer.</p>
<p>Free, OS and lightweight solutions preferred :)</p>
<p>Thank you in advance</p>
http://stackoverflow.com/questions/1831799/ordering-query-result-by-list-of-values1Ordering query result by list of valuesSorskoot2009-12-02T09:42:34Z2009-12-02T11:13:18Z
<p>I'm working on a sql query that is passed a list of values as a parameter, like</p>
<pre><code>select *
from ProductGroups
where GroupID in (24,12,7,14,65)
</code></pre>
<p>This list is constructed of relations used througout the database, and must be kept in this order.</p>
<p>I would like to order the results by this list. I only need the first result, but it could be the one with GroupId 7 in this case. </p>
<p>I can't query like </p>
<pre><code>order by (24,12,7,14,65).indexOf(GroupId)
</code></pre>
<p>Does anyone know how to do this?</p>
<p><strong>Additional info:</strong><br>
Building a join works and running it in the mssql query editor, but...</p>
<p>Due to limitiations of the software sending the query to mssql, I have to pass it to some internal query builder as 1 parameter, thus "24,12,7,14,65". And I don't know upfront how many numbers there will be in this list, could be 2, could be 20. </p>