2
votes
How to import a SQL Server .bak file into MySQL?
The .BAK files from SQL server are in Microsoft Tape Format (MTF) ref: http://www.fpns.net/willy/msbackup.htm
The bak fil …
3
votes
How do I install MySQL modules within PHP?
As the others say these two values in php.ini are crucial.
I have the following in my php.ini: note the trailing slash - not sure if it is needed - but it does work.
extensi …
1
vote
What is the ideal data type to use when storing latitude / longitudes in a MySQL database?
When I did this for a navigation database built from ARINC424 I did a fair amount of testing and looking back at the code, I used a DECIMAL(18,12) (Actually a NUMERIC(18,12) because it was firebird …
2
votes
Log to file via PHP or log to MySQL database - which is quicker?
Use a database - it is the only sane option. Even if it takes a little longer. Once you start with logfiles then you are on a track where it will cause you pain - e.g. moving servers, file permissi …
0
votes
How would I write this 3 level deep mysql query?
Start off by selecting the domain that has records - and then pull in the categories that match the domain.
so something like
SELECT * FROM records
INNER JOIN domains …
8
votes
Finding entries in one MySQL table based on conditions on another table
select distinct(hardware_name)
from hardware,incidents
where hardware.id = incidents.hardware_id and incidents.resolved=0;
…
0
votes
IF construct in MySql producing error #1064
ISTR that you can only use if statements in stored procedures, ref: mysql docs ...An IF ... END IF block, like all …
0
votes
What is the simplest way to format a timestamp from sql in php?
I use:
date("F j, Y", strtotime($row['my_timestamp']))
or you can change the SELECT to: DATE_FORMAT(field,'%d %M, %Y') as datetime
…
0
votes
Can MySQL 5.0 Community Edition scale up to meet a large user base?
MySQL will cope with heavy usage.
More importantly your system should be structured in such a way that you place the minimum load on the database and so that you could change the database …
4
votes
sum value from mysql in php
Get the database to do the work:
select sum(CASE WHEN package = 3 THEN 5 ELSE 0 END)
+ sum(CASE WHEN package = 4 THEN 10 ELSE 0 END)
+ sum(CASE WHEN package = 1 THEN …
2
votes
Do you only update the changed fields or all the fields?
I think it's worth changing - but probably not worth doing a select before insert.
I only update the fields that have changed, it's part of the operation of my DbEntity class which follows …
3
votes
Optimize MySQL search process
The first method will be faster - but IMO it's not the right way of doing it. I'm in agreement with tehvan about that.
I'd recommend keeping the item_id as is, but add two extra fields one …
0
votes
PHP and outputting one-to-many results
use an array keyed on the id and url iterate through the values and add to it as follows:
$link_categories[ $id ] .= $category." ";
$result = mysql_query("SElECT * FROM LINKS");
$ …
