A database is an organized collection of data.

learn more… | top users | synonyms (3)

0
votes
1answer
21 views

cannot add foreign key in mysql

Hello I want to create a foreign key to relate 2 tables but when I am using this query ALTER TABLE Player ADD CONSTRAINT FK_team_id FOREIGN KEY (team_id) REFERENCES Team(id); I get the error Error ...
0
votes
2answers
31 views

Detect if database and table exist on the same query

I need to be able to detect if the database and/or the table exists on a single query, to act accordingly. I have this fugly query working: SELECT * FROM (SELECT COUNT(*) AS `database` FROM ...
0
votes
1answer
26 views

Database table design with money and periods

Suppose I have database table like Employee and each employee has associated wage. Wages can be different in different periods of time. How can I design a table storing these wages? ("wage periods" ...
0
votes
2answers
30 views

close() was never explicitly called on database - app doesn't crash

Sometimes in my logcat the following error occurs: close() was never explicitly called on database '/data/data/com.example.addremovelistviewsave/databases/MY_DATABASE' ...
0
votes
0answers
7 views

MS Access 2007 Latin to Cyrillic

I've just been assigned to work on a project. I have to develop a GUI for an existing database. They have all the data in MS Access 2007 but when the data was registered they only changed the font to ...
0
votes
0answers
6 views

backend as a service similar to parse

I'm looking for a "backend as a service" to store user data (similar to parse.com). I need to be able to to analyze this data using BI tools or web based interface. Preferably it should be open ...
1
vote
1answer
16 views

Postgresql: Calculate time difference between elements of a column for an element

Assuming I have the following table: id | elementID | date | time ---------------------------- What I search is the following: select all "time"-Values for a given elementID order by date,time ...
2
votes
2answers
42 views

String seems to end query

I am storing user's liked pages from facebook in my postgres database, one of them being Sinead O'Connor's page. It seems like when it gets to the apostrophe, it terminates the query beacuse the ...
0
votes
0answers
5 views

how to Sync sqlite database with iCloud?

I have my sqlite database. now i want syncing with icloud and enable access for all users. I read blogs saying sqlite syncing with icloud is not supported. is there any alternate solution like ...
-1
votes
0answers
20 views

How make CRUD of one to many in grocerycrud?

I have tables like this user id ,name user_email id ,user_id,email user may have multiple emails.How can i do CRUD operation of these type of data in codeigniter grocerycrud?I tried this but ...
0
votes
5answers
25 views

array grouping which contains same fields

I have an array which contains following values. array( 'dates' => array( (int) 0 => '2013-04-22', (int) 1 => '2013-04-23', ), 'publisherName' => array( (int) 0 => 'Comp1', ...
0
votes
2answers
36 views

linq to sql select as command

I have a SQL query similar to this: SELECT ((dbo.ActiveWO.StartTime*60*60*24) - dbo.ActiveWOUpdatedTimes.ElapsedTime) as TimeLeft How can I insert that into a linq to sql query? Basically not ...
1
vote
2answers
41 views

How To Convert rows into Column in SQL?

Actually I have query which returns me 5 columns and values(date) for each or them in a single row but what I want is the columns names should be in a single column Title and its (Vale) in second ...
0
votes
1answer
46 views

multy databases for clients [closed]

I need help with databases MySQL. I am building a Customer Management System where more than 1000 users will use this system and each user will have their own clients which in turn they can have more ...
1
vote
0answers
11 views

How to solve this macro error that only shows up when running in IIS?

I have developed a .NET application that access to an Access database. That Access database has some macros that generate PDF files using the info from the database. The application works perfect in ...
0
votes
0answers
45 views

Execute empty nested sql script

I have a SQL*Plus script that contains several nested scipts, following this schema: @Script1; @Script2; @Script3; My problem is some of the nested script could be empty,they exist but are blank ...
0
votes
1answer
10 views

ORACLE DB dbf file related to which table?

I have a dbf files like: undotbs01.dbf 10.16113281 GB ENABLERS_DATA01.dbf 31.99998474 GB How can I find that which tables are associated with the dbf files so that I can delete the ...
2
votes
0answers
8 views

Database storing: pure or encoded?

A simple question. How should I store telephone numbers and e-mail adresses in a database ? Just pure text (or numbers) like email@email.com or is it better to encode it with a key (a bit like how ...
1
vote
2answers
42 views

Error :Not storing ID in DataBase

actually I am storing the three Values in Data Base,it successfully storing date, path but not storing the gallery id, here is my code I am using <?php ob_start(); session_start(); ...
0
votes
2answers
25 views

Website and Mobile Application Database Linking

I have an idea for a website that will require the use of a database to keep track of user accounts, and other things the user does on the website. I have experience with developing websites with ...
4
votes
2answers
77 views

Fast random row SQL on big table with where clause

I have this table, person_id int(10) pk points int(6) index other columns not very important I have this random function which is very fast on a table with 10M rows: SELECT person_id FROM ...
0
votes
0answers
29 views

array grouping data which comes from db model [closed]

I have a db model which returns daily company num_subs; array( 'date' => '2013-04-23', 'comps' => array( (int) 4 => array( 'name' => 'Comp1', 'total' => array( ...
3
votes
5answers
65 views

best practice to count record in MySQL + PHP

I want to check weather number of record > 15 for a condition. What is best practice to speed up the query? 1) $query="SELECT `id` FROM `table` WHERE `name`='$name' AND `usage` > '$limit'"; ...
0
votes
1answer
23 views

sql server lisiting table is not working properly when connect from java

I have executed select name from test1.sys.tables query in sqlcmd and got proper result. But same query is not working in java-sql connection querying from java lines. String show_tbl_qry="select ...
0
votes
0answers
8 views

Application retirement and database archiving

I have a constantly developing application and i want to archive its DB. The DB tables structures constantly change. My idea is to develop non changing core structures (tables) of production tables. ...
0
votes
2answers
14 views

Transfer data from remote server database into local database daily

I have access to (to-be-developed) web service that can return data from a remote database. The consumer for the data is a Windows/.NET application that needs to insert that data into the local ...
0
votes
0answers
17 views

TableAdapter.Fill Error

With the help of the Database Wizard in Visual Studio 2010, I connected a MS Access .accdb database to my VB.NET application. Everything works fine, until I decide to add one more column to one of the ...
0
votes
1answer
22 views

Drop temporary tables in a single session

How to drop the temporary tables in procedures for the same session. Because I am facing a problem regarding temporary tables in Postgres Sql. If two procedures: A() having a temporary table say ...
1
vote
5answers
49 views

How to store all data return by certain query in a table in a single string in SQL Server 2005/2008

Suppose I have two rows in my SQL Server table as below Id Name Address --------------------- 1 Kamal Kathmandu 2 Rahul Pokhara I want to store these two rows a single string like this, ...
2
votes
0answers
27 views

Include table name in column from select wildcard sql

Is it possible to include table name in the returned column if I use wildcard to select all columns from tables? To explain it further. Suppose I want to join two tables and both tables have the ...
0
votes
1answer
20 views

Create a proxy between the client and a DB to minimize the risk

I am creating a simple desktop application that allows multiple users to work on the database in the special GUI (details are not important). However, there is a security risk that a user might misuse ...
0
votes
0answers
7 views

Reading .docm file with check boxes and feed the data in database

I have a .docm file which has some text fields and check boxes. I want to parse that file and feed the content of that file into database depending on which check boxes are checked and which are not. ...
0
votes
0answers
6 views

use same entity model from different DB in OData protocol

We want to expose in OData the same entities from different Databases. We also would like to have an easy way to add a new DB with the same entities to the OData, without the need to re-compile the ...
0
votes
1answer
19 views

Ruby on Rails: Do not use database for specific environment

How can I disable the use of a database within a specific environment. I want an environment to purely serve images which does not require a database. A different environment will do the file ...
0
votes
2answers
23 views

how to make a foreign key a primary key in sql server

How do I make a foreign key as a primary key for my table? I'm using SQL Server 2008 for my web application developed with VS 2012. Currently, this is how my database is being designed. After ...
-1
votes
1answer
19 views

couting from mysql database in c#

I have a bit of a dilemma. I am trying to grab all of the products from the database that a customer may purchase. However, I have no idea how to write this in c#: "Keep adding to my 'list' WHILE ...
-2
votes
0answers
11 views

How load data from sqlite database to ListView? [closed]

Im trying load data from SQLite data base to ListView. But shows error. Which way i can load?
1
vote
1answer
40 views

Database design strategy for large column tables

I am working on a project where I have to deal with large column table storing meter readings for power stations. Presently date is being stored in a table as below. Table A Date, Block No, Station ...
1
vote
1answer
17 views

exide not show any results on screen

I write this query in exist-db (Exide): doc("/db/libros/prueba.xhtml")/html/body/p/a/@href Find two results: Found 2 in 0.003s But the screen does not show any Input document is: <html> ...
0
votes
0answers
10 views

MS Access 2010 VBA Combobox

i am new to programming field for MS Access and VBScript. I have a question that need help from here. first of all i have 2 tables in my MS Access database. 1 is Web, 1 is Owner. Relationship is 1 ...
1
vote
1answer
17 views

Adding time to rows with a specific timestamp in a database

I have a database table that includes a timestamp for each record. Everyday this database is updated by a cron that was set to run 1 minute before gmt midnight (23:59:00). We are changing the cron to ...
0
votes
0answers
25 views

Which database is good for storing media files(mp3)

I am working on a music player so i want to store all of my mp3 files on the database and finally doing searching insertion on database so now i want to ask about like which one(Berkeley,sqlite,mysql) ...
0
votes
1answer
26 views

Temporary Tables in Postgres Sql

I am facing a problem regarding global temporary tables in Postgres Sql. If two procedures: A() having a temporary table say temp(id, name) B() having a temporary table say temp(id, name, address) ...
-6
votes
0answers
14 views

What is the Steps for BI Project? [closed]

Can I know what is the step for BI project.. I have start with DATA Modeling after that what next !!! Just now started my carrier in database so please help out
0
votes
0answers
24 views

MySQL Full-Text-Search (With Rank)

Hi i am currently struggling to implement a simple search feature for a blog like site. To simplified i have three tables Table user (user_id, username, and so on...) Table post (post_id, ...
0
votes
1answer
23 views

Grant permission from one user to another in Oracle

I want to know how to grant permission of all database objects a particular user has access to to another user. To illustrate, there are four users in Oracle database: A, B, C, and D. User A does ...
0
votes
0answers
8 views

External hashing bucket concept

According what i understood is hash function will give bucket number and each bucket has number of block address which that hash function calculate. but this picture shows each bucket number mapped ...
0
votes
0answers
18 views

Is there any public benchmark of web frameworks by scalability?

For example, one could test how many simultaneous users a "Hello World" application from different frameworks can stand. This is the only benchmark I found and it does not test for scalability. Is ...
1
vote
3answers
23 views

How is PHP so high on this benchmark if it's said not to be as scalable as other frameworks?

http://www.techempower.com/benchmarks/#section=data-r5 This benchmark shows PHP consistently on the top 5 of several measurements. This contradicts the consensus that it does not scale as well as ...
-4
votes
0answers
21 views

External hashing in database [closed]

What is the concept behind external hashing? According what i understood is hash function will give bucket number and each bucket has number of block address which that hash function calculate. but ...

1 2 3 4 5 1112