Tagged Questions
The describe tag has no wiki summary.
3
votes
3answers
151 views
What is the cleanest way to sort “describe table” query results?
I'm working on "describe table" output to show a list of fields and their types, i want my primary keys to be at top of the list..
I think there's no way to sort describe's results using SQL ...
2
votes
1answer
401 views
MySql: Show columns but exclude everything except the field names
I'd like to pull a table's field names from MySql into python, and I know that
'show columns from project'
will work. And I've read that you can add 'WHERE ...' to restrict it to just certain ...
2
votes
1answer
176 views
Explain Vs Desc anomalies in mysql
What are the differences between EXPLAIN and DESC commands in MySQL ?
2
votes
2answers
113 views
Describing PHP functions efficiently
How can you describe the parameters and return type (getter/setter) of your PHP functions?
I need to tell my moderator the return type and list the parameters for each function.
I have hundreds of ...
1
vote
1answer
37 views
BeanUtils - 'describe' method returning Incorrect array value
I want to convert a bean class to a map (key=the name of the member,value=the value of the member).
I'm using the method BeanUtils.describe(beanClass);
(Edit:I'm using commons-beanutils 1.8.3, jdk ...
1
vote
1answer
120 views
Does Netezza have an ODBC DESCRIBE function?
I would like to DESCRIBE a table held on Netezza (so can see the variable formats, distribute on clause etc). I know this is possible (natively) using
\d <tablename>
However I am using SAS to ...
1
vote
2answers
130 views
rspec variables in different contexts/scopes
I'm trying to do some things with rspec and I'm not able to access the variables I need in the places I need them. For example:
describe "some things" do
it "should have things in App" do
...
1
vote
1answer
57 views
MySQL Describe output explanation
This MySQL table is generated by ActiveRecord.
+--------------------+-------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra ...
1
vote
1answer
176 views
Codeigniter mysql DESCRIBE
I'm a bit new to codeigniter and I'm trying to run this simple query:
DESCRIBE `table_name`;
I tried this:
$sql = 'DESCRIBE ?';
$desc = $this->db->query($sql, $table)->result();
Which ...
1
vote
4answers
182 views
Table names, and loop to describe
Working in Oracle 10g. Easy way to list all tables names (select table_name from dba_tables where owner = 'me')
But now that I have the table names, is there an easy way to loop through them and do a ...
1
vote
1answer
658 views
using union in a construct sparql query
i have such a sparql query:
select ?s ?p ?o from <http://localhost:8890/DAV/ranking> where {
{<http://seekda.com/providers/cdyne.com/PhoneNotify> so:hasEndpoint ?s.
?s ?p ?o} union
...
1
vote
3answers
8k views
How to get column info from oracle table you don't own (without using describe)?
How would one get columns information on table which he doesn't own, but has select granted? This is, without using DESCRIBE table_name. Consider this example:
// user bob owns table STUDENTS
grant ...
0
votes
1answer
277 views
Android local RTSP server (spoof), PVPlayer closes TCP socket after DESCRIBE reply sent
I'm trying to "spoof" the android player.
I want MediaPlayer (I'm using the VideoView wrapper) to connect to localhost so that I may reply to its RTSP requests.
The application works fine when the ...
0
votes
1answer
30 views
mysql describe table - concatenate fields?
Is there a way to use GROUP_CONCAT in the DESCRIBE table query? Was hoping for output like:
id,title,body
Rather than the typical description...
0
votes
1answer
69 views
can't see describe queries in zend framework db profiler
I have zend database profiler set up and turned on in my development site. I can see all the queries except for the DESCRIBE queries, which I know it should be running each time I ask for a new table ...
0
votes
1answer
71 views
mysqli DESCRIBE returns only one row
Structure:
CREATE TABLE `links` (
`id` int(11) NOT NULL auto_increment,
`title` int(11) default NULL,
`url` varchar(200) NOT NULL,
`seourl` varchar(150) default NULL,
`linkset` varchar(50) NOT ...
0
votes
2answers
209 views
“git describe” ignores a tag
In the following lines:
$ git tag -n1
v1.8 Tagged the day before yesterday
v1.9 Tagged yesterday
v2.0 Tagged today
$ git describe
v1.9-500-ga6a8c67
$
Can anyone explain why ...
0
votes
2answers
322 views
What does “Standard” mean in the datatype column of describe
if you
Describe dbms_transform
PROCEDURE COMPUTE_TRANSFORMATION
Argument Name Type In/Out
------------------------------ ----------------------- ------
MESSAGE ...