The tablename tag has no wiki summary.
3
votes
3answers
3k views
Sql - tablename as variable
i am trying to execute this query:
declare @tablename varchar(50)
set @tablename = 'test'
select * from @tablename
This produces the following error:
Msg 1087, Level 16, State 1, Line 5
Must ...
1
vote
2answers
70 views
MySQL: The easiest way to display all data from the table by getting TABLE_NAME olny (no column information) on the html page
MySQL db named "db2011" has several tables.
Using php variable $tablename (the tablename is correct, the table exists in the db), how to display the data from "db2011".$tablename on the html page?
...
1
vote
1answer
188 views
Use Mysql lower_case_table_names to 1
I have installed mysql v5.5.17 in linux using yum, now i want default lowercase table names so i have added
set-variable = lower_case_table_names=1
in
/etc/my.cnf
but if i do that then i could ...
1
vote
3answers
230 views
Using result of SQL Query as table name in mysql trigger
I've to write a trigger on my table which will perform the following functions.
Before Update on row, check price of Item
If price has changed from the last price, then select the table name, where ...
1
vote
1answer
107 views
MySQL Variables storing database name
I have a long script that I need to run on several different databases (all witht he same tables and field names).
What I would like to do is something like this:
1 SET @TARGET_DATABASE = 'beta'
2 ...
1
vote
2answers
648 views
mongoid, set_table_name & attr_accessible
I'm using rails3 edge and mongoid 2beta6 with ruby 1.9.2-head.
How can I manually change the table name, just like set_table_name for ActiveRecord? For example my model Signup should use the table ...
1
vote
3answers
910 views
Using mysqlimport where the filename is different from the table name
I've been playing with mysqlimport and I've run into the restriction where the filename has to be the same as the table name. Is there any way to work round this?
I can't rename the file as it is ...
0
votes
0answers
18 views
Is it correct that “ResultSet.getMetaData.getTableName(col)” of postgresql's jdbc driver is always returning an empty string?
When I use postgresql, I found following code:
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery("select * from t");
String tableName = rs.getMetaData().getTableName(1);
...
0
votes
1answer
33 views
How to select from MySQL where Table name is Variable
I have a case where getting the Table name should be from a Set Variable like :
SET @ID_1 = (SELECT ID FROM `slider` LIMIT 0,1);
SET @Cat = (SELECT Category FROM `slider` LIMIT 0,1);
select * from ...
0
votes
2answers
46 views
Zend_Db_Table_Abstract $_name not working
I encountered a problem regarding changing default table name
class Application_Model_DbTable_Game extends Zend_Db_Table_Abstract
{
protected $_name = 'games';
Error:
Message: SQLSTATE[42S02]: ...
0
votes
0answers
19 views
Issue In Printing Last created tablenames
I want to list the last created tables names as list in my site.There have sql backup file of database.When iam using the below code to list names,the table names repeated more than one.
This is my ...
0
votes
0answers
55 views
How to make Dynamic LINQ in Windows phone 7 by Passing Different Table Name and Column Names?
I have SQL queries like this
string str = tableName;
query = "select * from "+ str;
and based on that i want to fetch all rows's record...(Different table has different columns) i want to build ...
0
votes
1answer
74 views
How to combine asterix syntax with table abbreviations
Is it possible to combine * syntax with table abbreviations?
I want to do something like:
"SELECT subfunds.* FROM subfunds S" +
" INNER JOIN funds F ON S.id_fund = F.id" +
" WHERE F.fund_short IN('" ...
0
votes
2answers
85 views
mysql (5.1) > create table with name from a variable
I'm trying to create a table with a name based on the current year and month(2011-09), but MySQL doesn't seem to like this.
SET @yyyy_mm=Year(NOW())+'-'+Month(NOW());
CREATE TABLE `survey`.`@yyyy_mm` ...
0
votes
3answers
33 views
TableName of the result query
When the result of a query exists, I want to know the name of the row(s) that have the correct results:
$query = "SELECT Id FROM Programacao WHERE ID = 1";
$curDate = date("Y-m-d H").':00:00';
...
0
votes
1answer
152 views
Rails 3 Plugin - Active Record table_name_prefix
Im having problem to use table_name_prefix on my projects. I have a main apllication in my project that have others applications as plugins, these plugins works like a subsystem from the main ...
0
votes
1answer
82 views
Delete all tables with a certain prefix name in a SQL 2008 database programmatically
I have 3000+ tables in my SQL 2008 database with names like listed below, that all starts with tempBinary_, that I need to delete programmatically, how do I do that?
I don't know if I prefer the ...
0
votes
3answers
263 views
Query a table that has spaces in its name, MS Access C# VS2008
I have a situation, I have a Access table named Gas Flow Rates that I want to add records. When I try to run my insert query for a similar table Common Station, I get the following error:
"error ...
0
votes
0answers
186 views
Rails: fixture expects table name to be prefixed with module name, how to disable same?
I have fixture roles.yml in module security i.e. test/fixtures/security/roles.yml
In test_helper.rb, fixture:all loads all of fictures. Problem is on load, rails expects table name to be ...
0
votes
1answer
149 views
Rails HBTM join_table overwirting table_name
I'm running Rails 2.3.2 and doing:
class StandardWidget < ActiveRecord::Base
has_and_belongs_to_many :parts, :join_table => "widgets_parts", :association_foreign_key => "widget_custom_id"
...
0
votes
1answer
525 views
VB .NET : DataGridView.DataMember throws error when assigned a two-part name. i.e. Sales.StoreContact
My problem is oulined here:
http://support.microsoft.com/kb/314043
Microsoft says: "This behavior is by design."
No workaround is provided. I need a workaround.
So I have a dataset which is ...
0
votes
2answers
330 views
SQL/JDBC : select query on variable tablenames
I'm using Oracle DB and I would like to write a SQL query that I could then call with JDBC. I'm not very familiar with SQL so if someone can help me, that could be great ! Here is the problem. I have ...
0
votes
1answer
53 views
How to show the tablenames with foreign key = myId
I am trying to figure out where my primary keys of a table with translation per language resides as a foreign key.
This is what i already have ...
SELECT *
FROM ( SELECT TM.seqtrans, T.trans, ...
0
votes
4answers
754 views
SQL 2000 Table Name as variable in stored procedure
Table Name : RM_master
Fields : cust_no
acct_no
acct_code
Question is, I want to make the table RM_master as a variable in the parameters in the stored procedure?
This has no ...
-2
votes
2answers
426 views
How to get table name from column in DB2?
I need the db2 sql query to find the table/tables from column name. I have the column name but don't have table name which this column belongs to.