A database is an organized collection of data.
0
votes
1answer
25 views
How to run query on Apache Jackrabbit, explain with example
I am using Apache Jackrabbit as a database.
In my case, root node has numbers of child nodes(only at depth 1).
All child node has unique name, i.e., some Integer.
Each child Node have some properties ...
0
votes
2answers
31 views
Correct mysql structure
I have a two variants of DB structure.
First:
Here is one comments table, and two special table 'news_comments' and 'photos_comments' which connect comment with material.
Second variants:
Here ...
1
vote
3answers
55 views
Qry runs too long and index didn't work
I created an index to help a really long 28 minute qry run faster and it doesn't seem to have helped to much.
This is the Index I created
USE [NLTR201212_test]
GO
CREATE NONCLUSTERED INDEX [Billys ...
2
votes
3answers
83 views
Selecting 10% random number from a infinite stream
There is a stream of numbers coming. At any point of time i might need 10% random numbers.
I obviously don't want to store the entire stream.
The bigger problem is for which i am thinking the above ...
0
votes
3answers
35 views
How to insert a row and ignore only UNIQUE contraint errors, without using SELECT
I have a table with a column that must have UNIQUE values (but it could be also a multiple-column UNIQUE index, the problem is the same). In my PHP script I have to insert a row in that table.
I'm ...
-1
votes
1answer
25 views
Querying a ManyToMany Field in a Django model
So I have these two models:
class Player(models.Model):
playerName = models.CharField(max_length= 50)
playerTeam = models.CharField(max_length=20)
class Role(models.Model):
roleName = ...
0
votes
0answers
11 views
convert ANSI to UNICODE in my DB
I'm having to work with a database that is storing text as varchar and due to some recent inquiries I may be needing to deal with queries that are looking for a specific word or whatever that is in a ...
0
votes
1answer
21 views
How connect Pentaho Data Integration with Amazon RDS
I´m having difficult with create a new connection on Pentaho Data Integration (Kettle) with Amazon RDS,
Amazon needs a CA Cert, and I dont know how to input it to connection.
Someone can help me?
...
1
vote
2answers
32 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
44 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
34 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
40 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
8 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
22 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
22 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
55 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
8 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 ...
0
votes
1answer
25 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
33 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
43 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 ...
0
votes
1answer
50 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
14 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
53 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
16 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
9 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
44 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
29 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
89 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
33 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
69 views
best practice to count record in MySQL + PHP [duplicate]
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'";
...
-1
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
9 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
15 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 ...
1
vote
2answers
25 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
56 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
1answer
43 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
8 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
9 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
20 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
24 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
21 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
15 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
42 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
27 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
22 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
21 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
29 views
Which database is good for storing media files(mp3) [closed]
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
28 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




