DBMS stands for Database Management System, a program in charge of controlling databases.

learn more… | top users | synonyms

2
votes
2answers
57 views

sql statement finding total of an amount

I am trying to write an SQL statement that can find a company's top client. A top client is defined as one that has purchased the most (total purchase amount) among all the company's clients, not just ...
0
votes
0answers
27 views

is it possible to update an existing row in DB, using liquibase?

Tried to find an answer to this question, but couldn't. So, for example I have this table: TABLE: col1 | col2 123 0 124 1 and I want to change col2 value to 1 and this is how I'm ...
-1
votes
0answers
10 views

New Idea in vertical fragmentation using AI

I need a help for new Idea in Vertical fragmentation using Artificial Intelligent (Distributed Database) So I can do it as a Master Thesis. Regards
0
votes
1answer
25 views

Xquery: Dividing the attribute value by spaces

So I'm trying to get the country codes of this river. <river id="river-Donau" country="SRB A D H HR SK BG RO MD UA"> </river> How can I access them individually?
0
votes
0answers
15 views

Database events log or history

I want to ask: - What is Database events log as a concept ? and using for what ? Any example of event log and what store inside it.
0
votes
1answer
26 views

Finding constraints enforced across multiple tables in orcale

I have a database, with the following tables EMP, DEPT, CLIENT and PURCHASE. I am using Oracle 11g express edition I have executed the following SQL statement to find out constraints on table : EMP ...
1
vote
1answer
21 views

Historical Databases in RDBMS

What is Historical Databases in RDBMS ? I don't found any material in Internet that explain in concept the Historical Databases in RDBMS So can any body explain to me that or give me any link ...
1
vote
2answers
55 views

From where do I get FoxPro?

I want to use Fox Pro. The old DBMS. I have been searching for its download link but haven't found any. Can anyone please help me with the download link.
-1
votes
1answer
49 views

Extendible hashing for file with given search key values for records

I know that SO might be the wrong place to look for answers to questions such as these, but at the moment I need the answer and how to work it out step by step urgently. Suppose that we are using ...
-1
votes
2answers
14 views

Which Database UI is use with MYSQL? I am new in web developnment

I Want to install PHP on my computer, so I start with installing PHP and MYSQL, but I thought that how can I see the data which is inserted in the MYSQL database. Thats why I am searching for a ...
0
votes
1answer
16 views

How do i know who has called a pl/sql function inside a procedure when i perform a certain action from fontend(Oracle Apps)?

I have a pl/sql package: FND_PROFILE. I perform some actions from the frontend, which should trigger calls to FND_PROFILE.VALUE_SPECIFIC I need to find who has made these calls. There were ...
0
votes
0answers
30 views

Mysql best performance with dates

I have a big table with many many tuples, however I perform some queries just in a small range of this (extracted by date range), I would like to know how to set up the table struture to optimize the ...
0
votes
0answers
71 views

oracle DBMS error: PL/SQL: could not find program unit being called: “USER1.S”

All a sudden i get this error when i try to add a new procedure in my package or rename procedure name. it looks like something is locked not allowing me to add or modify new procedures. could anyone ...
0
votes
2answers
46 views

Open-Source library for Database management in Java

is there any open-source library in java for getting deep information about database, its tables, schema and ... (size in bytes, records and ...) ? I need to connect to database (various ...
0
votes
1answer
32 views

How DBMS Process different types of joins?

How a database engines process sql joins? Do they apply different technique to process different type of joins? Explanation with example will be appreciated.
1
vote
1answer
21 views

Query Handling Sql Server

Please help me regarding query. I am pretty weak in DBMS. I have a table TBLParent which has some rows as follows pkParentId FKProductId Name 1 5 P1 2 ...
2
votes
2answers
66 views

Hybrid DB System: NoSQL for data, SQL for relationships. Best Practice?

I'm building an app whose DB system will be crucial, and needs to be scalable since all its value will be in the data. I'm making a live voting system. I am comfortable with SQL and MongoDB, so it's ...
0
votes
1answer
30 views

iSQL Plus: print to screen

How do you enable iSQL*Plus terminal to print output to screen? For instance a simple hello world block: Note how "hello world" should be printed to screen, but only confirmation that there were ...
1
vote
1answer
25 views

Create PLSQL package on linked database

I have two databases. One which contains the packages and is always available. And another one that stores the data and is rebuild every day. The packages on the first database are making queries ...
0
votes
0answers
14 views

LUN's WWN as PK in a table

I am developing an application to monitor RAIDs and LUNs. As part of that, I've to design a table that keeps LUN information of RAIDs from various vendors. I know there is a standard in ...
-1
votes
1answer
27 views

Deploy MapDB to Heroku [closed]

Folks, I'd like to deploy MapDB to Heroku. Any experiences or search directions? Using heroku for the deployment is business requirement but we can change MapDB if not compatible with Heroku. We are ...
0
votes
0answers
21 views

difficulties dbms have dealing with multimedia data structures?

Just studying for an exam and I noticed in my notes I have no info regrading ; difficulties dbms have dealing with multimedia data structures ? I have searched online but still cannot find anything! ...
0
votes
0answers
15 views

Is a table with only 2 columns in 3NF is always in BCNF?

Is a table with only 2 columns in 3NF is always in BCNF ? What about a table with 3 column that is in 3NF ? I need some example with the answer to understand.
0
votes
0answers
35 views

Find minimum accessed records in mysql

I had a table which contains id, name and address and the table may contains 1000's of records. Now I wants to make a backup for least(minimum) accessed records which may be 1 month older. The older ...
0
votes
1answer
23 views

multivalued attributes in database of transaction

I want to make software for one of local store. I am making table of transaction which have attributes tran_id, name ,mob_no, date_of_sale, ...
0
votes
2answers
20 views

Why Should one define his own procedure/function while using a DBMS?

This might be an odd question but I've been wondering, if a database is well architected, why should one define custom procedures/functions ? What are those functions/procedures for ? I think I could ...
0
votes
0answers
67 views

Toad - DBMS_OUTPUT.PUT_LINE

With my projects, I build stored procedures using Toad on Oracle etc. One thing is bugging me a little. I want to be able to watch a variable in a stored procedure by enabling DBMS_OUTPUT and thus ...
0
votes
1answer
39 views

Trigger to delete past records in postgresql

I want only to maintain present 1 month records log details. need to delete past record log details.I tried this code however could not work this, create sequence userseq1; CREATE TABLE users ( id ...
0
votes
1answer
69 views

How to unlock superuser 'postgres' account in postgresql [closed]

While connecting to the pgadmin database postgres with correct password, I'm getting the following error: 'Error connecting to the server:FATAL password authentication failed with user 'postgres'. ...
0
votes
1answer
37 views

relationship in dbms

What is implicit and explicit relationship in case of entity relation modelling? I searched for this but can't find a good explanation.
-1
votes
1answer
178 views

Is Ms Access DBMS Or RDBMS?

IS Ms Access DBMS or RDBMS? I also do Google to find answer of this question,but in some website or blog says it is DBMS while others are says it is RDBMS.. so what is correct answer? and Please ...
1
vote
1answer
88 views

round off column value in postgresql

I trying to round off column value with 2 digit decimal value. create table ABC("NUM" real);----------created table insert into ABC values(22.567333335555555); ---------inserted values however i ...
-1
votes
1answer
64 views

How to write this query please help me out [closed]

Assuming you have the following four tables; customers orders ordered_items items Orders contains a foreign key (customer_id) referencing the customer who placed the order. Each ordered_item ...
0
votes
1answer
46 views

postgresql-using trigger to fire

I want to create a trigger so that whenever I make a change (Update or Delete) it should copy the old data to a new table (with same template). I tried this code: create table restrictions(ID ...
-2
votes
1answer
65 views

DBMS Project by JDBC or MySQL [closed]

I want to know the procedure to get started with any of the Database Management System Projects. Any help would be highly appreciated.
1
vote
3answers
28 views

inscrutable response of explain and how to decide to add an index in mysql

we have a very big database and to ask the question in very simple terms, I am unable to decide whether should I add an index on date field or not. My query is: should I add an index on date field ...
0
votes
0answers
26 views

How to realize Distributed DBMS

I want to ask if there is any vendor (MySQL, PostgreSQL, etc.) that allows to setup lightweight distributed DBMS. It should support fragmentation and replication. I didn't find a tutorial or something ...
0
votes
0answers
61 views

Push notifications to Android device from DB [closed]

I am a newbie to this type of development. I want to develop a system that uses a variety of parameters (such as time and location) to best select which device to display a notification on. The ...
2
votes
1answer
184 views

How to store sparse adjacency matrix

I've read several topics, but I'm lost. I'm quite new to this. I want to store huge sparse matrix and have several idea's but can choose between them. Here's my needs: Adjacency matrix of approx. 50 ...
0
votes
0answers
15 views

Identifying and Non-Identifying Relatioinships

Is it possible to have a one is to one non-identifying relationship?
0
votes
1answer
42 views

implementing block storage for a database

For a database class, we are implementing our own database, and I am having trouble how to implement block storage in C++ (where each block is 1024 bytes). We are to store each database table as a ...
2
votes
3answers
115 views

GROUP BY for SELECT one column

If I am selecting one column, something like SELECT columnname FROM table will the result always be in the same order as SELECT columnname FROM table GROUP BY columnname or does it depend on the ...
1
vote
2answers
135 views

Create hash to match with Oracle DBMS_UTILITY.get_hash_value

I'm working on a PHP application with a mysql backend to replace an existing Oracle forms application with an Oracle database. I've received a dump of the Oracle database and loaded this data into ...
1
vote
2answers
68 views

Distinct Keyword usage in SQL query

I have a table called manuscripts BOOKID AUTHORID BOOKNAME GENRE NOOFCOPIES AMOUNT B105 A102 Diagnosis Journal 500 10000 B102 A102 The Essence... Fiction 110 ...
-1
votes
3answers
58 views

Using Multiple AND condition in where clause

I have a table called Manuscript BOOKID AUTHORID BOOKNAME GENRE NOOFCOPIES AMOUNT B105 A102 Diagnosis Journal 500 10000 B102 A102 The Essence... Fiction 110 ...
1
vote
4answers
104 views

ORACLE QUERY with ROWNUM

I am expecting the value to be listed from 1 to 899 for the following query. But it returns only the value from 1 to 667. Can somebody help me to find the reason select rownum from all_tables where ...
0
votes
1answer
91 views

SQL, Struggling to believe HAVING can be more efficient than a join

I Am trying to find Players that have played in more than one game for a team in the following tables (** denotes private key), and find it hard to believe the best query I can come up with (below) is ...
2
votes
1answer
116 views

SQL Query, Trying to improve efficiency (Oracle DBMS)

For the following tables (I've used ** to indicate the parts of the primary keys) Team (*tid*, name) Game (*gid*, tid, name, year) Member (*mid*, name) MemberOf (*mid*, *tid*, startyear, endyear, ...
0
votes
0answers
164 views

backend android application [closed]

We are trying to develop back end for an android application. We realise that we have to develop a http client , database management system and a web server . Our options for the web server are PHP, ...
1
vote
2answers
315 views

Postgresql query for getting n-level parent-child relation stored in a single table

I have a table denoting parent-child relations. The relations can go n-level deep. I have created a sample table using the following query: CREATE SEQUENCE relations_rel_id_seq INCREMENT BY 1 ...

1 2 3 4 5 8