Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
2answers
295 views

What is the explanation of this java code?

I have the following code : public class Main { public void method(Object o) { System.out.println("Object Version"); } public void method(String s) { ...
9
votes
4answers
4k views

Eclipse debug : Step Into/Step Over

I want to debug the whole flow of a java program .What is the difference between F5 (step into) and F6 (step over) in eclipse view in this case.
7
votes
7answers
168 views

Can someone explain this SQL query to me?

I'm reading this article and I'm trying to understand this SQL statement but I am still somewhat new to SQL. I'm not sure what comment and c refer to. I think one of them is the table name but I am ...
7
votes
6answers
363 views

What's a buffer?

As far as my understanding of languages goes, a buffer is any portion of memory in which a data is stored like an int,float variables, character arrays etc. However, I was reading buffer overflows and ...
5
votes
4answers
116 views

Explaining your system to a client

I'm currently developing a small Database Management System for a local company. How would you go about explaining how the system you have designed to a client? If they are non-technical and have no ...
4
votes
2answers
96 views

HOW does this Powershell Regex work?

'<Relation From="701047080" ObjectNumber="166543300" Output="77" To="464616324">' -match '(?<=Output=")[^"]*' $matchs then contains 77? Which is what I want... I just don't understand why ...
4
votes
4answers
70 views

Improve MySQL Query with IN Subquery

I hava a table items and a table item_attributes. For simplicity let's say my table item has a column id and a column name. Of cource there is a index on the id column. the item_attributes table has ...
4
votes
2answers
693 views

MySQL Explain: what's causing 'Using temporary; Using filesort'

I'm planning on creating a view using this SQL SELECT, but the explain for it shows it's using temporary and using filesort. I can't figure out what indices I need in order to fix this problem. ...
4
votes
3answers
231 views

MySql and inline SELECTs

I have a query that looks like this: select id , int1 , int2 , (select count(*) from big_table_with_millions_of_rows where id between t.int1 and t.int2) from myTable t where .... This select ...
3
votes
4answers
150 views

mySQL - How can I interpret my EXPLAIN results and optimize this query?

Looking to understand what my EXPLAIN results mean here, and to optimize this query and my tables as best as I can. The query: SELECT i.pending, i.itemid, i.message, i.cid, ...
3
votes
3answers
190 views

In mysql, is “explain …” always safe?

If I allow a group of users to submit "explain $whatever" to mysql (via Perl's DBI using DBD::mysql), is there anything that a user could put into $whatever that would make any database changes, leak ...
3
votes
4answers
305 views

Slow MySQL Query

I have a query in MySQL (used in a stored procedure) which searches by name and another field. When I use different combinations of these search parameters, I get quick results (between 1 and 2s) but ...
3
votes
2answers
6k views

How do I use DB2 Explain?

How do I use DB2's Explain function? -- both to run it, and to use it to optimize queries. Is there a better tool available for DB2? I've built queries before, but the only way I've had to tell how ...
2
votes
3answers
52 views

MySQL explain output

Does anybody know the difference between Using Index and Using where; Using index in mysql's explain output (in Extra)? Reproduction: CREATE TABLE `tmp_t1` ( `id` int(11) NOT NULL ...
2
votes
1answer
193 views

PHP : Difference between “&&” and “and” : Operator precedence and short circuiting

I was going through operator precedence section of php.net and came across this example which says $a = 1; $b = null; $c = isset($a) && isset($b); $d = ( isset($a) and isset($b) ); $e = ...
2
votes
3answers
74 views

How is the “heart” on this webpage done in html/css/or what so ever?

I saw a page today which has a little detail, which I find, is very neat. http://www.songkick.com/feedback If you have a look at the right upper corner you see: I tryed to inspect the element, to ...
2
votes
2answers
72 views

mySQL command Explain ignore LIMIT?

I use mySQL server version 5.5.14 and now I am trying this simple SQL query with Explain command: EXPLAIN SELECT id, name, thumb FROM `twitter_profiles` LIMIT 10; and it shows me this result: ...
2
votes
3answers
88 views

Why is this query taking so long?

This query is appearing in my slow log on a mysql system, # Query_time: 37 Lock_time: 0 Rows_sent: 5 Rows_examined: 405199 select euroapps.id, euroapps.name, euroapps.imageurl, euroapps.created, ...
2
votes
2answers
102 views

How to use mysql's EXPLAIN to look for possible problems

Stress testing a site & everything is breaking, obviously. Today's problem: WSOD on several pages. After a few hours I have narrowed the problem on one page down to this query (I hope): It used ...
2
votes
1answer
127 views

mysql 5.1.37 query index not being used

I have a query that is performing poorly. Server version: 5.1.37-1ubuntu5.1 (Ubuntu) SELECT * FROM `influencers` WHERE (`influencers`.`twitter_id` = 86861293) LIMIT 1 show create table ...
2
votes
3answers
99 views

Slow SQL query using Order By

I am far from a SQL guru and I am trying to execute: SELECT `apps`.* FROM `apps` INNER JOIN `similars` ON (`apps`.id = `similars`.similar_app_id OR `apps`.id = `similars`.app_id) WHERE ...
2
votes
1answer
389 views

How to use git bisect?

I have read some articles saying that git bisect is awesome, however I'm not native speaker and I can't understand why it's awesome. Could you please demonstrate on some code sample what is so ...
2
votes
7answers
79 views

What does the provided regexp match?

I've got a regex but I'm not sure what the {1,} stands for. Full regex is next: ^.{1,}$.
2
votes
3answers
104 views

Can someone explain/annotate this Ruby snippet with comments?

Could someone please add comments to this code? Or, alternatively, what would be the pseudocode equivalent of this Ruby code? It seems simple enough but I just don't know enough Ruby to convert this ...
2
votes
4answers
96 views

Mysql Query optimisation

Query 1: SELECT cid, dl FROM chal WHERE cid IN ( SELECT cid FROM c_users WHERE uid = 636587 ); Query 2: SELECT chal.cid AS cid, chal.dl ...
1
vote
1answer
26 views

Creating a Facebook Login for my site

I just got my website, www.anointedmanna.com and would like to add a facebook login option for my guests. I have followed all of the steps but I am getting errors. Facebook development assisted me ...
1
vote
4answers
45 views

Simple MySQL indexing issue

I ve got this table: CREATE TABLE IF NOT EXISTS `test1_nopart` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `idAccount` int(10) unsigned NOT NULL, `data` mediumint(8) unsigned NOT NULL, ...
1
vote
1answer
39 views

2 exactly same mysql queries give 2 differents 'explain' output : why?

I found a very weird mysql behaviour : when I run a specific query twice, the explain of this query is different the second time : query = SELECT `twstats_twwordstrend`.`id`, ...
1
vote
3answers
263 views

SELECT statement not using possible_keys

I have a table from a legacy system which does not have a primary key. It records transactional data for issuing materials in a factory. For simplicities sake, lets say each row contains job_number, ...
1
vote
3answers
148 views

MySQL explain shows that main table's indexes are not used at production server

I am trying to optimize the following modified MySQL query from OsCommerce: select distinct p.products_id, pd.products_name, m.manufacturers_name, s.specials_new_products_price from products p inner ...
1
vote
2answers
674 views

MS PowerShell: Please explain how this wake-on-LAN script works

I found this PowerShell code on a blog a couple months ago. It sends wake-on-LAN signals to the MAC address of your choice without using external programs. I commented on the blog post and asked the ...
1
vote
4answers
80 views

Can someone explain this code for me?

Hi im using this code for a list of links that have an animation on their padding. I wanted when i clicked on it to keep that padding and not animate back to its original position. What i dont ...
1
vote
1answer
201 views

Very high cost for low limit LIMIT / high OFFSET

I'm having very large table with products. I need to select several products at very high offset (example below). Postgresql manual on indexes and performance suggests to create index on column that's ...
1
vote
2answers
811 views

How to get Lucene explanation for a SolrDocument with Solrj?

I'm searching an Solr index with SolrJ and trying to get the Lucene explanation for logging it for further use. The code goes like this: SolrServer server = new ...
1
vote
4answers
143 views

C please help explain little code

Please help me understand 2 things I found in this C code: First, there is the whole code: usbMsgLen_t usbFunctionSetup(uchar data[8]) { usbRequest_t *rq = (void *)data; static uchar ...
1
vote
1answer
63 views

mysql three joins

I have a problem with mysql I have 3 tables: Deposit +-------------------+-------------+------+-----+ | Field | Type | Null | Key | ...
1
vote
3answers
340 views

PHP Plugins System [closed]

Possible Duplicate: Best way to allow plugins for a PHP application Hello all.. I'd like to learn how does the php plugins system works.. So can anyone explain the idea of it for me in ...
1
vote
3answers
77 views

In `equals(T value)`, must T be Object, or can it be like City, etc?

I'm trying to understand the equals() method better. All examples I've seen do something like: public class City { public boolean equals(Object other) { if (other instanceof City ...
1
vote
2answers
556 views

PostgreSQL: exists vs left join

I heard many times that postgres handles exists queries even faster then left join. http://archives.postgresql.org/pgsql-performance/2002-12/msg00185.php That's definitely true for one table ...
1
vote
3answers
76 views

The explain tells that the query is awful (it doesn't use a single key) but I'm using LIMIT 1. Is this a problem?

The explain command with the query: explain SELECT * FROM leituras WHERE categorias_id=75 AND textos_id=190304 AND cookie='3f203349ce5ad3c67770ebc882927646' AND endereco_ip='127.0.0.1' LIMIT 1 ...
0
votes
0answers
50 views

Why MySQL does not use “index only” on count(1) query

I have a table with about 2M rows. The table contains about 20 fields. Two of them are: manufacturer_id INTEGER NOT NULL brand_name VARCHAR(250) NOT NULL I also have an index that ...
0
votes
3answers
67 views

Can someone explain this Java code (formatting the output using System.out.format) to me?

Enum: public enum tuna { Veyron("Speed", "R1"), Reventon("Speed", "R3"), MclarenF1("Speed", "R3"); public final String style; public final String theclass; tuna(String thestyle, String theclasss){ ...
0
votes
1answer
34 views

Avoid MySQL 'using temporary' in certain cases

I have two tables, users and followers: Table users: id INT, PRIMARY_KEY name VARCHAR joined INT This table is indexed on id and joined. Table 'followers': user INT ...
0
votes
0answers
278 views

Facbook Login button

Working with Facebook Login The code is as follows, <html xmlns:fb="http://ogp.me/ns/fb#"> <head> <title></title> </head> <body> <div id="fb-root"> ...
0
votes
5answers
92 views

Why would i combine Math.floor With Math.random?

just like this: Math.floor(Math.Random * num); Can someone explain please?
0
votes
1answer
33 views

postgres sql explain delete statement

Question. In this return from postgres EXPLAIN DELETE FROM ... : Delete (cost=0.00..19474.19 rows=266518 width=6) Does cost 19474 mean execution time in seconds? Like in 19474s = 5.4 hours? ...
0
votes
3answers
46 views

Need some help deciphering MYSQL EXPLAIN output for complex join

My site's homepage has a complex query that looks like this: SELECT karmalog.*, image.title as img_title, image.date_uploaded, imagefile.file_name as img_filename, imagefile.width as img_width, ...
0
votes
5answers
95 views

Please explain this structure and why it's used like this?

I found the code segment below in [this tutorial][1]. I don't understand what exactly happens. It seems like the button is created and that a listener is then set to listen for when it's clicked, but ...
0
votes
3answers
129 views

How do database driven blog-style websites work?

Before I start: I know this is a very broad question, but it is the best way I could phrase it, I have searched around a lot and can only seem to find generic explanations. I searched SO and didn't ...
0
votes
0answers
113 views

Is there any thing wrong with lucene explain and score computation? [closed]

I dont know why the lucene explain result is no-match,but there do be the result, and also the score for each term is 0

1 2