MySQL is an open-source, relational database management system.

learn more… | top users | synonyms (3) | mysql jobs

0
votes
0answers
4 views

Index I created didn't help too much

so I created an index to help a really long 28 minute qry run faster and it doesn't seem to have helped to much. This is the Index I created USE [NLTR201212_test] GO CREATE NONCLUSTERED INDEX [Billys ...
0
votes
0answers
3 views

Missing row from mysqli $query

I have a problem with MySqli not outputting the result of my query. $cxn=mysqli_connect($host,$user,$pw,$dbname) or die("Error connecting to server"); ...
1
vote
0answers
10 views

Database Edit with Approval - mysql

I currently have a database which many users can access and make changes to. The is also a log database that stores all changes to tables within the database using triggers. I would like to add the ...
0
votes
0answers
8 views

MySQL - How to count word occurrences in article titles

I´d like your help to count word occurrences in titles for each 'id' in a MySql table. The table Article and ExpectedResult are available in http://www.sqlfiddle.com/#!9/f985f/1 Thanks in advance, ...
0
votes
1answer
8 views

mysql incremental replication from remote DB

We are developing a web application using mysql and php. In our application, we are expected to sync our local mysql database with a remote mysql database ( running on a different host) based on a ...
0
votes
1answer
22 views

PHP PDO MySQL Not outputting result but rest of page loads?

Im trying to run a different query depending on the amount of results from the table. I have the following but it only outputs the text at the end, not the 'echo' data? Can anybody see what Im ...
0
votes
3answers
20 views

Get the date/time on a particular insert

Is there any way to get information on when a particular piece of data was put into a MySQL database? Is it possible to do so after the fact? I’m looking around and not seeing anything. I see ...
0
votes
0answers
5 views

calling mysql_thread_end function before exiting the thread in c++ pthread

I am using two mysql objects in my application. I have to call mysql_thread_end only once before exiting the thread. Is there any function/callback so that it will call before exiting the thread? ...
0
votes
0answers
9 views

How to make user managed transaction in jBoss

I'm using JBossV5 as my application server. It provides the connection for mysql and I'm using jdbc in my application. I want to manually commit transaction. I know it is not possible to use ...
0
votes
1answer
20 views

SQL query for searching whole database

Is there any query to find any clause using 'like'? I have a huge database for which i need to search a url but not sure in which table it exist so i was wonder if there is any query to run on whole ...
0
votes
5answers
32 views

Product Search php mysql

Im trying to create a search for a product from the database. MY DB: tbl_brand ----------- brand_id Brand_name 1 Canon 2 Nikon tbl_product ------------- prod_id prod_name ...
0
votes
2answers
30 views

mysql query two tables with UNI

This is my query and i cant correct. SELECT a.pack_id FROM ( SELECT pl.pack_id FROM tbl_metals_list ml LEFT JOIN tbl_pack_list pl ON ml.pack_id = pl.pack_id WHERE ...
1
vote
1answer
26 views

How do I Connect an android application to a running MySQL Database, on an external hosted server

Basicly, i've been doing a lot of searching around and still haven't found anything that solves the issue. I am trying to connect my application to a database that is ran and hosted by a company, on ...
0
votes
0answers
8 views

MySql transactions to be used ina web app to make group of correlated updates

So basically , i am working on a website which has a post,notifications system . So when someone posts the following happens -> 1) The posts table is updated 2) Depending on the subscribers list , ...
3
votes
1answer
40 views

MySQL compare string with national characters

I got a small trouble: SELECT * FROM tableName tn WHERE LOWER(tn.name) = LOWER('place_string_here'); It's ok, when it does a perfect fit: tn.name = orange_tree place_string_here = ...
0
votes
5answers
28 views

User logon scripts using php

Hi I am new to PHP and Mysql. I need help with a logon on script I am currently writing. I have the script working fine. But I am wanting to add an additional requirement for logging in. In the ...
0
votes
2answers
21 views

How to solve the incorrect date value error when putting an csv file into MySQL with python?

I have a table in csv file and I want to import it into a MySQL table. I copy paste a series of data from a website into an excel file and then convert it to csv file. The columns in my table are ...
0
votes
0answers
6 views

Web application freezes. How do I find the reason?

The application is running on apache tomcat 7.0.37. It is a Java/GWT application using JPA and MySql. Sometimes we find it completely unresponsive. Today was the 2nd time it happened in 5 months. It ...
1
vote
0answers
6 views

Using A Result Set In A MySQL Function

I'm trying to create a function that reads a passed variable, if the variable begins with a * then I need it to read a result set of descriptions from another table and concatenate them together and ...
-4
votes
1answer
33 views

Parse error: syntax error, unexpected T_STRING in line3 [closed]

error in line 3: that begin by $sql <?php $sql = mysql_query("SELECT `sub_id` FROM `subject_studant` WHERE `std_id` = 2 ") or die mysql error(); while($row=mysql_fetch_assoc($sql)) ...
-4
votes
0answers
36 views

PHP AJAX Chat Script

I want to create a php mysql chat application similar to facebook. So far i have only 1 lead that is : http://anantgarg.com/2009/05/13/gmail-facebook-style-jquery-chat/ This is anant garg's basic ...
0
votes
1answer
20 views

Is a “Load DATA” without a file (i.e., in memory) possible for MySQL and c++

I want to insert about 80k row in sec to mysql server. currently I use regular INSERT. I want try to use LOAD DATA but I want LOAD data from memory(RAM). and not from file,that I have to wrtie to ...
0
votes
1answer
6 views

pentaho create to many hibernate connection

I set maxactive=20, but when I execute show processlist I show over 30 connection like this: 109051 | root | localhost:33203 | hibernate | Sleep | 4 | | N This is my setting: ...
0
votes
1answer
23 views

Update select form element with new entries

I have a single select element in a form that pulls user entered values from a MySQL db. There will be times when a user starts filling out the form and finds the select element doesn't have the ...
2
votes
5answers
49 views

UTF-8 and German characters?

I have problem with German characters on my web site, in html/php part of website i have this code to set utf-8: <meta charset="utf-8"> in mysql, i have this code to set utf-8 SET CHARSET ...
0
votes
1answer
27 views

insert and concatenate field and save in third field in table of mysql

I have a table with 4 fields. Form values are saved in table, i want to concatenate two fields and save in third fields. I need to insert data and at the same time concatenate the values to one ...
0
votes
0answers
16 views

How make CRUD of one to many in grocerycrud?

I have tables like this user id ,name user_email id ,user_id,email user may have multiple emails.How can i do CRUD operation of these type of data in codeigniter grocerycrud?I tried this but ...
1
vote
1answer
32 views

MYSQL Why While loop returns first record two times?

I have two records in my DB and i want print them out. So i wroted this: <?php $resDB = mysql_connect("localhost", "root", ""); mysql_select_db("xe", $resDB); $aco = mysql_query("SELECT * FROM ...
0
votes
1answer
45 views

multy databases for clients [closed]

I need help with databases MySQL. I am building a Customer Management System where more than 1000 users will use this system and each user will have their own clients which in turn they can have more ...
1
vote
0answers
38 views

Return only rows whose max value is greater than specified

Hi I asked a question here: Return only rows whose max value is less than specified The answer I got was perfect for what I wanted : SELECT * FROM tbldealermobiles INNER JOIN tblhistory ON ...
0
votes
4answers
26 views

MYSQL compare values from same columns

Okay I tried to look all over stackoverflow, and the closest solution I found is this: mysql AND clause on same column multiple times But I can't use statements and "having" syntax won't work because ...
0
votes
6answers
36 views

Eval() display custom value if null

<td> <asp:Label ID="TypeOfPaintingLabel" runat="server" Text='<%# Eval("TypeOfPainting") %>' /> </td> Does anyone know how this works? I want to display ...
0
votes
2answers
53 views

Check if a user has voted for the maximum number of items he can vote for

Table items id maxVotes parent type 10 2 9 heading 11 0 10 item 12 0 10 item Table votes userId votedFor 1 11 1 ...
1
vote
2answers
22 views

multiple row fetched with max number sql

I have two tables with the following records: Clients: cid | cname | ccountry ----------------------- 1 | John | Australia 2 | Mark | USA 3 | Liz | England Orders: oid | cid | oquantity ...
2
votes
1answer
51 views

Finding differences using left join

I have two queries and i need to find out the differences between their result sets.My queries are as below. select star_ident,transition_ident,fix_ident,min(sequence_num) from ...
1
vote
1answer
11 views

sleeping connection (mysql) mcrypt

I have isolated some code within some other guys code which is causing our servers to grind to a halt. This occurs every time an mcrypt function is called. $iv = ($iv === false) ? ...
0
votes
0answers
10 views

Tomcat throws a “SQLException: No suitable driver” on application redeploy

Whenever I redeploy/restart an application on Tomcat (they all use Tomcat's DBCP connection pool), it throws a "SQLException: No suitable driver" exception, even though it had no problems finding the ...
0
votes
2answers
20 views

Bind label text inside gridview

I saw few grid view examples where data is bound to grid view from a sql or other database. The question is - <ItemTemplate> <asp:Label ID="label1" runat="server" ...
0
votes
4answers
33 views

mysql check if uid record exist for today based on timestamp else do an insert

Im trying to do a mysql check if a record from $uid exist from today based on $timestamp and if it doesnt then do an INSERT. //EXAMPLE RECORD FROM TABLE VOTE --- #vote_fb_uid# --- #vote_time# ...
0
votes
1answer
10 views

Storing orders with different product types, each having a unique set of parameters, in MySQL

I am working on an e-commerce website that will sell cloths but also provide a way to book a service, like manicure. I am trying to create a single shopping cart, to which users will add both. The ...
0
votes
1answer
28 views

Unknown column 'G.Id' in 'on clause'

I am getting SQL Error (1054): Unknown column 'G.Id' in 'on clause'. What is wrong and how can be solved? SELECT E.Id, E.Nome, A.login AS Username, E.Departamento, E.Funcao, E.Telefone, E.Fax, ...
0
votes
0answers
9 views

RSS reader does not display all the fields

I'm working on a project whre it should two RSSs. One is for news and the other one is for game result. 3rd party should be able to use their RSS link and should allow to pull data from above ...
0
votes
1answer
16 views

Optimizing mysql Join query with date sorting

Simplifying the database/table structure i have a situation with two tables where we store 'items' and item properties (the relation between the two is 1-N) I'm trying to optimize the following ...
0
votes
1answer
37 views

MySQL Select by index

How can I select values from the MySQL database by a range of the index? For example I have the search values of A-Be How can I retrieve values that start with "A" ranging to "Be" I've tried using ...
0
votes
0answers
18 views

How can a user insert data and an image to a marker that they place on map in my website

my problem is that I want a viewer to be able to place a marker on the map that is on my site. Then the viewer should be able to give information like name, time a description and upload an image. I ...
1
vote
2answers
36 views

Error :Not storing ID in DataBase

actually I am storing the three Values in Data Base,it successfully storing date, path but not storing the gallery id, here is my code I am using <?php ob_start(); session_start(); ...
4
votes
1answer
69 views

Fast random row SQL on big table with where clause

I have this table, person_id int(10) pk points int(6) index other columns not very important I have this random function which is very fast on a table with 10M rows: SELECT person_id FROM ...
0
votes
0answers
17 views

MySQL - Analyze Query

This is a following question regarding: Original question The scenario: One query with FULL Text Search One query with Like %something% Over 11 thousand records Goal: - Analyse the explain of ...
0
votes
1answer
78 views

How to update SQL with single query and not with php loop?

These are my tables: tbl_answers => aid qid answer uid dateposted emailnotify namedisplay status isbestanswer tbl_questions => qid question ...
-6
votes
0answers
22 views

find the result for given below table [closed]

table 1 Id name 1 aaa 2 bbb 3 ccc 4 ddd 5 fff table 2 id name 7 uuu 8 ttt 9 rrr 10 rrr 11 eft Result On page 1 ...

1 2 3 4 5 3318