The database-table tag has no wiki summary.
0
votes
1answer
60 views
database design for song voting system [closed]
I have to make a simple song voting website with asp.net .
Here is the sample of my database tables and fields .
Album User Voting
------ --------- ---------
...
1
vote
1answer
44 views
Creating SQL table, foreign_key confusion
One question, I have supervisor set as foreign key.
He collect information through Activity Participant and take it from person ID.
Question:
How should I create the Activity table? what do I have ...
0
votes
2answers
95 views
Database design for a quiz app [closed]
I am little stuck with the database design for my quiz app. Kindly guide me on this -
My app UI will go something like this -
My DB Tables -
User -
user_id
user_name
user_email
user_password
...
0
votes
1answer
59 views
Select statement within a cell in a database table
I have a basic database table. I would like to implement a functionallity that would allow to insert a select query within a random cell in the table. The result of this query would then be used as as ...
0
votes
2answers
126 views
Deleting foreign key references in a database table
Given this problem:
Consider a relation geq which represents “greater than or equal to”,
that is, (x,y)E geq only if y < x.
create table geq
( lb integer not null
, ub integer not null
, ...
1
vote
0answers
50 views
satchmo no such table
When ever i goto the admin and click i on any of the satchmo links i get
DatabaseError at /admin/product/category/
no such table: product_category
Request Method: GET
Request URL: ...
0
votes
2answers
89 views
Create SQL Table in PHP with variables and text
I'm trying to create a SQL table in PHP using the following code:
$sql = "CREATE TABLE `$DBName`.`$login`_clients (
ClientID int NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`ClientID`),
AgentClients ...
5
votes
2answers
351 views
SQL Server - Table Metadata
I have a 1000 tables in the SQL Server Database.
If I wanted to add a brief description of what each table does in my application, should I be creating another table to maintain that information? ...
1
vote
2answers
46 views
Should I have less tables and use complex queries to fetch data or have more tables to simplify queries?
Let's take a senario where user is tracking traffic for certain cities. The traffic is updated every two hours and we've to keep previous data to plot graph. So I've a traffic_stats table which looks ...
0
votes
0answers
36 views
Is there a for toolkit or framework for generating web forms from database at runtime?
What it should be able to do is let a user (actually admin) select tables from a database, define their relations and this toolkit would then generate a set of dynamic web forms (Java-based but php ...
1
vote
1answer
122 views
Display all tables created after a particular date
I am using Oracle11g for creating database applications. My question is that I have close to 100 different tables in my database and I want to list out all the tables created after a particular date. ...
8
votes
3answers
145 views
Creating database table
I am creating a database table for investigations and i need to log the person who reported the incident, this could be a record from the supplier or user tables. The easiest way to do this would be ...
0
votes
2answers
92 views
ruby on rails database design
I am using devise for authentication and i have added some user-personal fields which i am not sure is the correct way to continue developing my app and is the proper database design...
users ...
2
votes
2answers
61 views
Generate connection table from table with duplicates
I have a SQL Server database table (DuplicateIds) that contains the ID's of duplicate words from another table (Words). Here's and example of the data in the table DuplicateIds:
word_id | ...
0
votes
0answers
121 views
List[Map[String,A]] to database table in scalaquery
I just learnt about scalaquery yesterday and it seems useful. I'd like to convert a List[Map[String,A]] (where A is a primitive type - Int, Float, String etc. and the set of keys in each of the maps ...
1
vote
1answer
328 views
Database table structure for user profile with 20 attributes
Let's take for example a dating site with 100.000 users. Each users has about 30 attributes like hair color, smoking, age, city, gender, ...Some attributes are bool, some int and some var or text.
...
0
votes
2answers
2k views
MySQL Selecting data from multiple different tables in a single query
I have a database of users where I have a primary table with name, address etc. I then have separate tables for the users children, pets, training courses and education results etc.
This users ...
0
votes
4answers
211 views
What should be table structure to maintain login logout logs?
I have loginlog table as following
Field Type
login_id int(10) NOT NULL
platform varchar(50) NOT NULL
browser varchar(50) NOT NULL
ipaddress varchar(50) NOT NULL
last_login ...
0
votes
2answers
1k views
Query to find the difference between successive rows in Mysql
As I am new to MySQL, this question may be silly. How can I find the difference between successive rows?
Example:
A table (tableName='Abc') contains a single row as follows,
|DATA|
|10 |
|20 |
|30 ...
0
votes
3answers
988 views
copying SQL server DB table from one server to another
I am trying to copy a table from a live remote server to my local development machine. I tried:
select *
into mmm
from [sqlb8.webcontrolcenter.com].[1photo].[kelraie].[pix]
But got this error:
...
1
vote
1answer
182 views
Database Tables For Multiple Roles
I have an architecture problem about how to store data related to a specific role in a relational database.
I have three roles, a Subscriber Contact, Teacher, and Student. They are all stored in ...
1
vote
1answer
422 views
MultipleInputs with DBInputFormat in Hadoop
In my database I have multiple tables where each table is a different entity type. I have an Avro schema that I use in hadoop which is a union of all the fields of these different entity types plus ...
2
votes
1answer
3k views
Android SQLite copy table to another table
I want to implement delete column in Android's SQLite. I want to make table copy without desired column, than delete former tablet and set name at new_one as a former name. I have made table to table ...
0
votes
2answers
58 views
Getting the last answer id for the questions
In M.C.Q test, when user come back to the same question again how can I track the last answer given for the question?,
following is the table structure
Method: 1
temptblUserAnswer
id uid ...
2
votes
1answer
217 views
web2py: How to rename a table?
How do I rename a database table in web2py? If there is not a direct way, what is the best workaround to do this? All I found was this thread ...
0
votes
1answer
148 views
Should I split a table which has big size data?
I'm using MySQL. I need to save contents of XML file to database. The size of file is usually less than 10k.
The table looks like this:
articles
-----------
id
date
writer
...
file_name
file_content ...
0
votes
1answer
257 views
Database abstraction for creating tables/views in PHP
I'm wondering if there is a solution for creating database models (tables and views) independend from the used DBMS. I'm using Zend Framework at the moment and the abstraction for the basic CRUD ...
3
votes
1answer
1k views
Qt4: Print a SQL table to PDF
Qt has built-in PDF export support (QPrinter::PdfFormat).
What's the best way to print an SQL table to a PDF file? (a table from a database loaded with QSqlDatabase and linked to a QTableView)...
2
votes
5answers
521 views
How do you determine the base table?
Hi my question is in relation to database theory.
If I am given a set of tables, is there a way to determine the base table just by looking at them?
0
votes
3answers
654 views
database design: what fields are must for a user table in database?
I am trying to design a user table for MySQL.
for now, my user table looks like this
users (
BIGINT id,
VARCHAR(?) username,
VARCHAR(?) password,
VARCHAR(254) email,
DATETIME last_login,
DATETIME ...
-5
votes
3answers
324 views
How to start with Django?
I want to start with Django. But I have some doubts.
I will design Database Tables that doesn't work with simple CRUD generators. For example, for one action I will store data in several database ...
1
vote
4answers
704 views
SQL Server, Unused tables for a long time (How to get rid of unnecesarry tables)?
Is there a way to find the unused tables which are nothing else but rubbish in database ?
3
votes
5answers
3k views
How Can I Delete The Contents Of All Tables In My Database In phpMyAdmin Without Dropping The Database?
How Can I Empty The Contents Of All Tables In My Database In phpMyAdmin Without Dropping Any Of The Tables In The Database?
Since I Do This Several Times An Hour While In Development, I'd Rather Not ...
1
vote
5answers
312 views
Is it necessary to have a Primary key which is sequence generated even though I may not use it for DB operations
Hi I had parent table which has ID and some other columns and a child table which have many values based on this ID(foreign Key). I wanted to create the table with a Primary Key which is sequence and ...
