DBMarcos99

276
reputation
97 views

Registered User

name DBMarcos99
member for 5 months
seen 2 days ago
website
location UK
age 47
At ease with various databases (Oracle, Sql*Server, Mysql). Prefers Unix/Linux platforms to Windows, but have worked on many different projects. Shell and Perl stuff fascinate me, and I've also learnt a bit about creating (php) and hosting websites. Surprisingly I'm a fan of Excel. Tend to be co-opted onto migration projects, when I'm lucky enough to find work. Se habla espaƱol. Ich kann auch Deutsch.
Dec
4
comment Is it a good practice to use email address as a primary key in many tables in a website system?
Good answer. It's entirely possible that 2 users share the same email address (husband and wife possibly?) so you can't be 100% sure they'll be unique.
Nov
29
answered Can I display the output of MySQL using CGI?
Nov
24
comment Control logic using HTML::Template
Thanks Sinan. You've stated what I originally guessed, but good to get some confirmation from a guru.
Nov
24
asked Control logic using HTML::Template
Oct
3
revised How do I utilise longitude/latitude values efficiently in Mysql ?
legal implication
Sep
30
comment How do I utilise longitude/latitude values efficiently in Mysql ?
Interesting that you use 6367 as the figure for the Earth's radius in kilometres - This figure seems to vary between 6356 and 6378 according to different sources. Anyway, I'm marking this as the accepted answer
Sep
22
comment How do I utilise longitude/latitude values efficiently in Mysql ?
Thx for that. I was really looking for options within Mysql, but using the API interface can be a useful alternative.
Sep
22
comment How do I utilise longitude/latitude values efficiently in Mysql ?
Fantastic - I've always been a fan of denormalizing data storage where it aids calculation time. thanks!
Sep
22
asked How do I utilise longitude/latitude values efficiently in Mysql ?
Sep
21
comment Copying part of a large file using command line
I modified this slightly to get it to work (and also to ignore case if searching for a text string). I changed the if statement to: if ($_ =~/stevens/i) { $out = 1;} Hope that's of interest to someone..
Sep
2
answered Going to Oracle from MySQL
Aug
24
comment What are the essential dba skills a developer should learn?
Thx for your input. I can think of many scenarios where the dba is responsible for query optimization - the developer leaves, the db structure changes, functionality is changed, new indexes are required etc.
Aug
24
comment What are the essential dba skills a developer should learn?
Some good points there, thx
Aug
24
comment What are the essential dba skills a developer should learn?
Thx for that answer.
Aug
24
comment What are the essential dba skills a developer should learn?
I like this answer! (although I can think of scenarios where resource usage isn't an overriding issue)
Aug
24
asked What are the essential dba skills a developer should learn?
Aug
18
comment Parsing files that use synonyms
Great! Even I can follow this!
Aug
15
comment Slow MySQL Query
Could you show your sql statement? Also, it may be useful to know the cardinality of the names stored in your table.
Aug
15
comment How can I sort a hash’s keys naturally?
Shouldn't it be print $key to list the keys?
Aug
14
comment How do you select from mysql where last character in a string = x?
What Josh said - sometimes you have to denormalise and add a column to dramatically improve performance. There is a REVERSE function you can use on text fields (for instance if you want to store email addresses but search on the domain eg .com .org etc), but I don't think it would help in terms of performance in the original setup here.
Aug
14
answered A great tutorial of mysql to jump right in?
Aug
6
comment Can you recommend a MySQL Book for an “intermediate” developer?
I have to second this recommendation of Pro Mysql (I even try to market this book on my blog). Apart from being extremely useful, I found this book very readable. Another new book that is getting reviews is the MySql Administrators Bible.
Jul
31
comment How do I ask for help optimizing & fixing queries in MySQL?
Fair enough, I admit I could have phrased it better. Probably why I didn't end up becoming a document writer :(
Jul
30
comment How do I ask for help optimizing & fixing queries in MySQL?
Oh I see - you thought I'd done an in-depth analysis of your code (would have been far more verbose if I had). Perhaps I could have phrased it better, but the link to the video tutorial should have been indicated better. Understand your comment (I think) now..
Jul
30
awarded  Critic
Jul
30
comment How do I ask for help optimizing & fixing queries in MySQL?
You asked in your ultimate sentence (and this inferred what you were asking) "What helps you?" I fail to see how my answer falls short of this - the stuff I entered has certainly helped me in terms of optimizing and fixing queries in Mysql. Still, your question, your rules, your karma.
Jul
30
comment Renaming the current file in Vim
I suppose you could :! cp foo foo.new and then :e foo.new ?
Jul
30
comment Renaming the current file in Vim
Ah - I misread "I would like to continue editing person.haml_spec.rb" My bad!
Jul
30
answered Renaming the current file in Vim
Jul
30
answered How do I ask for help optimizing & fixing queries in MySQL?
Jul
29
comment Is there a simple way to match more than 1 occurence of a specified string on each line?
Another great solution. Thank you Inshalla
Jul
29
awarded  Commentator
Jul
29
comment Is there a simple way to match more than 1 occurence of a specified string on each line?
Thx for this. I'm putting this as my accepted answer as you gave more than one solution (even though Seth's answer is great too). Thx, Mark
Jul
29
comment Is there a simple way to match more than 1 occurence of a specified string on each line?
That seems to be exactly what I was after! I understand the {} quantifiers a little more now - Thanks.
Jul
29
asked Is there a simple way to match more than 1 occurence of a specified string on each line?
Jul
26
revised MySQL, MSSql, Oracle: When to use which?
missing word
Jul
26
answered MySQL, MSSql, Oracle: When to use which?
Jul
19
revised select 10 rows per day with order
added 45 characters in body
Jul
19
answered select 10 rows per day with order
Jul
16
comment Grouping by intervals
If you changed this slightly to 3*round(mynum/3.0) you'd have the lower limit of each grouping displayed for you.
Jul
16
revised Hidden Features of MySQL
credit to other user
Jul
16
answered MySQL 1 millon row query speed
Jul
16
revised Hidden Features of MySQL
added 287 characters in body
Jul
15
comment Annoying PhpMyAdmin export feature
You're right, there are various workarounds rAyt - thanks for your suggestions. I was just wondering if there was a phpmyadmin setting I could change to enable exporting (in this case to csv files) from phpMyAdmin where a query brings back more than 100 rows. If there isn't I'll continue with a workaround, so no big deal.
Jul
15
comment Annoying PhpMyAdmin export feature
Thx for that - I'm aware of different ways of doing this, and your suggestion is probably the best option for exporting tables. However i'm looking at various sql queries to export data from. I suppose I could always create temporary tables..
Jul
15
asked Annoying PhpMyAdmin export feature
Jul
13
comment Effective Password Encryption
Correction - would still need a lot of brute-force computing power, to recover the password. But knowing the stored Salt value and that it's prefixed to the password, would at least make things feasible (if unlikely). Hands up - still one of the best methods I've seen on this issue.
Jul
13
comment Effective Password Encryption
Seems a very good solution to stop external hackers who don't have access to values in the database and who can't see the code. However (like most cases I suppose) you'd only need an internal spy to crack this one fairly easily.
Jul
11
comment How do I best advertise my availability to prospective employers?
Very interesting. I'd virtually written off Twitter as being another time intensive utility, yet hadn't thought of the recruitment possibilities. Many thanks.
Jul
11
asked How do I best advertise my availability to prospective employers?