A database is an organized collection of data.

learn more… | top users | synonyms (3)

0
votes
0answers
19 views

Who is the first one who introduced the ETL model? [closed]

I am not an expert in database or data warehousing. I am searching for the original reference about the ETL (Extract Transform Load) model. Who is the first one who talked about it? any paper or ...
1
vote
1answer
26 views

Moving wordpress from local to server with git (sourcetree)

I am new to working with GIT, I found out how to commit and push everything, so that's working. I installed my wordpress blog locally and worked on the theme and plugins for a while and now I want it ...
0
votes
0answers
20 views

Dynamically change the ServerDB name in SSIS connection manager

We have a few 100's of SSIS packages in our environment. Last night we moved our database from one server to another and renamed it. We now need to go into all of packages and change the connection ...
0
votes
0answers
13 views

Mysql Bulk Connections Solution

I have installed Mysql 5.6 On linux Operating System CentOS My Configuration in my.cnf are [mysqld] max_connections = 50000 max_connect_errors = 50000 max_user_connections = 0 max_allowed_packet = ...
1
vote
2answers
42 views

Join table on already joined table

I'm struggling to put together a select statement that joins 3 tables. Here's the database: CREATE TABLE Beerstyles ( style_id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, style_name ...
0
votes
3answers
67 views

Which way to make this object class

I am creating a Character object that has an Inventory object. In the Inventory object you got a list of InventoryItem object and in every InventoryItem object you have an Item object. Character ...
-2
votes
0answers
19 views

Service running database android [closed]

I am developing an app that runs a database via service, here is my implementation of service private Timer mTimer = new Timer(); static final int UPDATE_INTERVAL = 1000; SQLiteDatabase sqlh; ...
0
votes
1answer
19 views

What to use in order to have full consolidated table in Mysql

I am creating two tables . Table 1 has following schema user_id int not null,autoincrement movie _id int not null movie_name varchar user_name varchar ...
-1
votes
1answer
14 views

A lucky draw system [closed]

I am creating a lucky draw system whereby the participants' username will be stored in either a file or a database and later one of the username will be picked as the winner. Each product has many ...
2
votes
4answers
60 views

Table coulmn merged query

I made a table query is CREATE TABLE questions ( _id INTEGER PRIMARY KEY AUTOINCREMENT , question TEXT , correct_answer TEXT DEFAULT (null) , answer1 ...
1
vote
2answers
63 views

MySQL WHERE IN (SELECT id from …) fastest approach?

I am using a query like this: SELECT * FROM videos WHERE id IN (SELECT video_id FROM videos_tags WHERE tag_id = 2) to search videos with the same tags, but with about 8'000 videos this query is too ...
0
votes
0answers
49 views

SQL: Fastest way to sum the division of two columns that contain 0's and grouped by a third

Lets say we have 3 columns, all integers, the first the id, the second X and the third Y, where X is 1 when an instance occurred, 0 when not, and Y is 1 when an opportunity for that instance occurred ...
4
votes
1answer
52 views

mysql query with HAVING COUNT clause

So, I have a particular query that I'm trying to tweak a bit. The needs for the project changed a bit and I'm not sure how to approach this. I have 3 tables - a main table, a "tags" table and then a ...
2
votes
1answer
11 views

how to get resultsets from sybase stored procedure

I have a stored procedure with the following format : CREATE PROCEDURE proc_test @variable1 int AS SELECT column1, column2, .... FROM table_test Because this procedure doesn't return ...
0
votes
1answer
41 views

initialise all values in a query to 0 and top to NULL if there's no result

Hi all i execute this query to get a table where there's statistics of some database information.. i'd like to intialise the fields that don't exist ( because the query is executed in different dates ...
0
votes
1answer
26 views

How to integrate parse with phonegap

I want to developed an app for cross mobile platform (iOS / Andriod). I am using phonegap and parse for the same. Super admin will upload the content of the app for particular user from the website, ...
0
votes
2answers
30 views

Change all columns in mysql - Draggable boxes

I'm developing a little script with draggable boxes and saving their positions in MySQL table. But I have a little problem. I dont know how to write SQL query for deleting and adding new boxes. Let ...
0
votes
3answers
28 views

Can't access sqlcmd using username password

I am new to SQL Server. Please help me to fix. I have created a user with password in SQL Server Management Studio (2008 R2). When I use sqlcmd with this user, sqlcmd says C:\Console2>sqlcmd -U ...
-1
votes
5answers
40 views

Undefined variable - PHP MYSQL HTML [closed]

I have a table filled with members list (listmembers.php) and one of the column looks like this: But, when I click the ban now! or unban now! the page refers to dobanunban.php and it shows Notice: ...
1
vote
2answers
36 views

JDBC Connection Pool - Simple Setup and Library

This question has formed following a previous question (Implement Iterator design pattern using JDBC). I understand the basic concepts of connection pooling but no further than that. My application ...
0
votes
1answer
18 views

Null pointer Exception on retrieving values form database

package database; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; /** * This Class handles ...
0
votes
1answer
28 views

Performance Impact of turning Columns into Rows

I'm planning to use JavaDB (Derby) or PostgreSQL. I have the following problem: I need to store a large set of vectors. Currently all vectors contain a fixed number of elements. Hence the appropriate ...
0
votes
2answers
44 views

Join of two tables as to get entire records

I am creating two tables .Table 1 has following schema user_id int not null,autoincrement movie _id int not null movie_name varchar user_name varchar ...
0
votes
1answer
42 views

Alternatife Way to Changing Username In ORACLE DB

Is there a way to change username. I want to make test on a database which is already using by others. So I came up with the idea that i create a new DB and creates all the tables functions ...
0
votes
3answers
27 views

image windows phone database

hi i devolop a Windows phone application with local database this is a table from my database [Table] public class DBannotation { [Column(IsPrimaryKey = true, CanBeNull = false )] ...
0
votes
3answers
59 views

Application force close when i access delete method database

my application force closes when i access delete method, it works fine with insert and get items method. in databasehandler, public class DatabaseHandler extends SQLiteOpenHelper { private static ...
0
votes
1answer
30 views

Android SharedPreferences or SQLlite Storing

I have a question. In my project I have some user preferences which are stored in the SQL database. There are about 200 records and the table has 3 columns. This records do not change, only if the ...
0
votes
1answer
21 views

Delete App DB present in mobile from the App using cordova

I want to drop the complete database related to my app from the app on occurence of some particular event. How can I accomplish this ? I am using cordova to build my app and my app is for both ...
0
votes
3answers
41 views

Why I get this strange result: [BLOB - …]? [duplicate]

This is my database schema: Post: id title body date Tag: id title Post_Tag: id id_post id_tag Comment: id id_post body date and this is my query: SELECT Post.id AS post_id, Post.title ...
0
votes
1answer
42 views

how to check if the column of a SQLite dabase is null

i am not able to get a reliable result to tell if the collumn of a database is null or not. i tried using a query checking to see if the the column of the database returns null or a string value of ...
0
votes
2answers
63 views

Can't insert rows into sqlite database using objective c

For some reason, the following code is not storing any data in my sqlite database. The return code is SQLITE_DONE (101) so it is not giving me any error messages. The method is being called a number ...
0
votes
3answers
43 views

export mysql database table contents on to a PDF file using php

How to export MySQL database table contents on to a PDF file. It has to be displayed in the website as download/print data. When the customer click on that he/she has to get the PDF opened or an ...
0
votes
0answers
52 views

How to print posts with associated tags? [duplicate]

This is my database schema: Post: id title body date Tag: id title Post_Tag: id id_post id_tag Comment: id id_post body date There is a many to many relationship between post and tag. I need to ...
1
vote
1answer
48 views

zf2 - Zend\Db - What do Model, Entity, Hydrator, Mapper, TableGateway do and how it all links together?

Please explain what Model Entity TableGateway Mapper Hydrator do and how it all works together in zf2 application. please don't give links to blogs articles. I need simple big picture ...
0
votes
0answers
8 views

How to check role based authentication on button click event

I have a login form in which user have to enter credential i.e. username and password.In my code i check that user whether it is an authorized user or not now i also want to check what is the access ...
0
votes
2answers
92 views

How to do this complicated query?

This is my database schema: Post: id title body date Tag: id title Post_Tag: id id_post id_tag Comment: id id_post body date There is a many to many relationship between post and tag. I need to ...
0
votes
5answers
53 views

Couldn't get data from another table in MySQL

I am currently trying to get a data(M_Name) from a table called Merchant. Following are my codes: <?php $response = array(); $link = mysql_connect('localhost','root','') or die ('Could not ...
0
votes
0answers
33 views

alter table waiting for select query to get executed

I have a use case where i dynamically add new columns to db.The alter table works fine when no select queries are running on the db table.But if alter query is running at the same time when some heavy ...
0
votes
1answer
30 views

Insert NSArray with diffrent types into sqlite database?

Hey i got a Question regarding inserting data into an sqlite database. I want to create general class for inserting data into a sqlite database. so i wrote a method like this: ...
-1
votes
1answer
10 views

GUI interface: match Part to Suppliers

Working on auto-parts/suppliers database. At some point of process user enters requested Parts into form. And then he would like to see Suppliers, who might deliver these parts. Which GUI design is ...
0
votes
2answers
33 views

Incremental MySQL database design where future needs are unknown

I am using MySQL, InnoDB, and running it on Ubuntu 13.04. My general question is: If I don't know how my database is going to evolve or what my needs will eventually be, should I not worry about ...
0
votes
0answers
11 views

Same login and synchronization for a website and wordpress

I have a website ,say www.example.com and a blog at,www.example.com/blog.I am looking for a way to actually synchronize both my things together,Like people wud need to register (only at ...
0
votes
1answer
44 views

primary key to foreign key to foreign/primary

there are tables in database like tbl_items item_id item_batch item_name (primay key = item_id+item_batch) tbl_transaction(orders)_header ordre_id employe_id date ...
1
vote
2answers
53 views

how to store JSON object in SQLite database

how do I store a JSON Object in an SQLite database? What is the correct way? one place is the blob type column. if i can convert the JSON object into byte array and use Fileoutputstream the other ...
2
votes
1answer
31 views

Date value in mysql tables changes while exporting mysql db

I am exporting mysql table to setup it on live, but while exporting DB I noticed that my date column value is changing.. If it was "2007-06-11 00:00:00" earlier then after export it is now changed to ...
0
votes
0answers
18 views

Connection failure during production database synchronization with internal database

I am sure this is a routine issue. We are facing latency and connection failure issues when database sync is in progress. In Synchronization process, we first delete all data from our production ...
0
votes
1answer
10 views

Protege DataMaster: Table records cannot be shown or imported

There are some records in my tables stored in MySQL, and the Protege DataMaster plugin can be successfully connected to the database. Tables can be listed on the left. But when I click any one of ...
2
votes
1answer
24 views

How to maintain unique Id for records coming from two different databases?

I am feeling stuck while working on two different enterprise applications . From the first Application A1 and second Application A2, we used to send some documents to our print vendor which prints ...
-3
votes
0answers
30 views

ERROR - ORA-00907: missing right parenthesis

I am new to SQL and i got an error "ERROR - ORA-00907: missing right parenthesis" when i try to run my query, Please do help me out in solving this problem,Please do find the query below Thanks in ...
1
vote
1answer
51 views

php code display code in browser

I am doing a project using my university web server where my httpdocs are stored. Everything works fine including my other PHP scripts which connect to phpmyadmin database both posting and getting ...

1 3 4 5 6 7 1109