Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
53 views

I'm not as experienced with tables, and hibernate best practices. If I have two tables Books and Authors, but there's millions of entries for both Books and Authors, if I want to read/retrieve all ...
Cindy's user avatar
  • 11
0 votes
1 answer
47 views

Let's consider the following two, simplified tables: CREATE TABLE payments ( id bigserial NOT NULL PRIMARY KEY, method int, method_name name, total numeric, payment_date timestamp ...
Salih Kavaf's user avatar
  • 1,175
1 vote
0 answers
99 views

I have the following situation: There are a Divisions, each consist of List of elements. Those elements can be LineChart, DataTable and etc. I want to find a design solution, where Division can ...
Georgy's user avatar
  • 11
0 votes
0 answers
193 views

The given question ask me to complete the code to insert two rows in the given table as shown in the image. Some part of code is already given in question which I can't edit and some part of code is ...
Amazon King's user avatar
0 votes
1 answer
82 views

Code: CREATE OR REPLACE TYPE Address AS OBJECT ( city VARCHAR2(15), state VARCHAR2(15), pin NUMBER(6)); CREATE OR REPLACE TYPE Student AS OBJECT ( id NUMBER(3), fName VARCHAR2(10), lName VARCHAR2(10),...
Riddesh Naik's user avatar
0 votes
1 answer
195 views

I tried creating a an object table after successfully creating an object type but i got the error 'datatype specification not allowed'. Please what am i doing wrong. I am lost at this point. CREATE ...
jazy's user avatar
  • 1
0 votes
1 answer
42 views

CREATE TYPE accounttype AS OBJECT( no varchar2(10), name varchar2(10), balance number(10), dob date, member function age return number ); CREATE TYPE BODY accounttype AS MEMBER FUNCTION age RETURN ...
SADIQ SONALKAR's user avatar
-1 votes
1 answer
140 views

This is my first question. So Im trying to use act_no varchar2(10), act_name varchar2(10) of type accounttype in account_branchtype. So I entered the command = create or replace type ...
Sadiq's user avatar
  • 3
0 votes
1 answer
766 views

I'm starting with object-oriented databases and I have a lot of questions about it :-( Having the following structure: CREATE OR REPLACE TYPE typeAuthor AS OBJECT( aId INTEGER, aName VARCHAR(...
Martín's user avatar
0 votes
0 answers
791 views

I'm attempting to benchmark clickhouse against postgres for API use. The dataset is ~40M records SELECT name, web_url, image_url, visitor_id, web_id FROM analytics WHERE event_id =...
ClickhouseEnjoyer's user avatar
0 votes
0 answers
44 views

I am not quite done with my code yet, but I need help with my true/false question maker so that it can set user inputted questions as either true or false. Then when the program is executed with def ...
Gabriel Angelos's user avatar
1 vote
1 answer
1k views

I have built a SQL database with my CustomerDetails, ProductDetails, OrderDetails from scratch and also stored procedures to create new Customers, new Products and Orders. So now I want to build a ...
Hoy Cheung's user avatar
  • 1,678
1 vote
0 answers
120 views

I have a huge database with 1000s of records. There are different types of "Groups" and each child object(group assignments) has different levels of nesting, (refer to the code below) ...
WildThing's user avatar
  • 1,315
0 votes
1 answer
169 views

public class DigitalClock { private int m; private int h; private int s; //Fill in the necessary fields below /** * Constructor for objects of class DigitalClock * Replace the constructor. * ...
Gvbe _'s user avatar
  • 5
0 votes
1 answer
262 views

I am trying to insert values to a nested table with an object of another table. This is what I'm trying (Sorry, I'm new working with dbs): INSERT INTO Ocurrences (..., oSpace) VALUES (other inserts, ...
Yorwe's user avatar
  • 53
0 votes
2 answers
736 views

Suppose I have two classes of objects, A and B. Both are linked together in a database. We have an Event and a series of Actions associated with each event, and some attributes of each. class Event(...
therickster's user avatar
0 votes
1 answer
417 views

There are options for transferring a DB snapshot from a relational database to S3 in AWS. But S3 is an object store, so it only stores files (e.g. parquet). Are the relationships (like keys) between ...
Cybernetic's user avatar
  • 13.4k
1 vote
1 answer
805 views

I have a problem in my roomDatabase. I searched on google and found some solutions but I can't solve my problem. Can anyone help me? Note : I want to use Object Oriented in my project. Error : ...
Nima Khalili's user avatar
1 vote
1 answer
82 views

I have a collection with multiple documents inside Mongodb. The document in this collection looks like - { "name": "xyz", "address": "abc", "...
Ritik Saxena's user avatar
-2 votes
1 answer
474 views

I've been practicing with Oracle SQL Developer for some time using school assignments and encountered some kind of dilemma while doing the Entity Relationship Diagram for one of those, here's my issue:...
Jls's user avatar
  • 74
-1 votes
1 answer
125 views

Here are the instructions: A company wants to allow customers to do product search by selecting a product name or description, and then typing a search term. Using native dynamic SQL, create a ...
homerwight's user avatar
0 votes
0 answers
391 views

I'm designing my first database, and am considering 1 of 2 ways to create the "Address" table: Create "Address" table with following columns: PartyID, Address Type, Street, Apt/...
J.R.'s user avatar
  • 1
0 votes
1 answer
724 views

Consider the following problem: There's the Transaction type and the Service type. Each transaction covers one or more services at a time. However, two different transactions may cover same services. ...
Anton Curmanschii's user avatar
1 vote
3 answers
110 views

I'm very new to flutter and dart, I'm having trouble with functions, I've already spent too much time here. Any help is appreciated. Thank You `void main(){ Car myCar = Car(drive:slowDrive); ...
Zahin Zaman's user avatar
-1 votes
1 answer
242 views

So, I've been researching for quite some time now, but it seems that all the results I'm getting are fairly outdated. I'd like to know what the current state of object-oriented database management ...
EMcCrary's user avatar
2 votes
3 answers
4k views

I'm working on the following assignment and am new to using classes to create/store objects: Employee Management System: This exercise assumes you have created the Employee class for Programming ...
larbot's user avatar
  • 23
0 votes
1 answer
247 views

Folowing the Object-Relational Database model, I wanted to create the tables or_doctor and or_recepcionist derived from the type t_employee. Here, follows the type structure: DROP TYPE t_employee ...
Luis Fernando's user avatar
-1 votes
1 answer
33 views

For example - If I need 3 tables for my app - A,B and C. When creating a new scenario/record instead of inserting a new row, I create a set of 3 new tables - A2,B2,C2 Next time when I create a new ...
Vikas's user avatar
  • 7
0 votes
2 answers
914 views

I'm creating a library archive site containing a collection of my favorite reads. I have a click event listener on the books, adding them to my local storage key 'books' when doing so. I want it so ...
javontech's user avatar
0 votes
3 answers
73 views

I am trying to use a statement that will insert a row in a table once the user types a name and ID number into a text field. However I keep getting an error when trying to run the program and I ...
Christopher Dennis's user avatar
-1 votes
1 answer
322 views

I want to choose a design pattern for the below case: Ancestor Tree: An ancestor tree is a special type of family trees that keeps track of all known ancestors of a person. The following is the data ...
user4532954's user avatar
0 votes
1 answer
151 views

I'm a software engineer student, and we are studying C. Actually we are deal with data structure, so in some of my search about hash tables especially linear probing I read the term of "resizable ...
Moez Ben Rebah's user avatar
0 votes
2 answers
162 views

I pretty want to understand how to organize my code. Let's say i have this class called "Brand" which has a "Product" object: public class Brand { public int ID { get; set; } public int name { ...
Cristian Pomales's user avatar
0 votes
2 answers
273 views

class.txt Reena Sam, 100, 90, 80, 100, Donna D. Bartolome, 90, 90, 100, 100, Chris Tui, 100, 90, 100, 70, I'm new to java and I'm trying to figure out how to store file data lines to calculate ...
Jon's user avatar
  • 23
0 votes
1 answer
314 views

Simply trying to find the correct syntax/method to enter create SQL objects and store them inside an oracle database. (school project so it's got to be possible) CREATE OR REPLACE TYPE Person AS ...
insite's user avatar
  • 93
0 votes
0 answers
420 views

In our Database course in university, our reference book was Fundamentals of Database Systems by Elmasri. In Chapter 12 of this book, we were introduced to Object-Oriented database systems, in which ...
Mohammadmahdi Alijani's user avatar
1 vote
1 answer
40 views

I am trying to work on a "keep the change" problem by using object oriented programming on Python. I made a class: class BankAccount: def __init__(self): self.savings = 100 def ...
Zahra's user avatar
  • 11
1 vote
2 answers
112 views

I want to print a class attribute, part of a list of instances, only if this attribute exist i created a class name Guitarist, that includes a name attribute, and otherItems (which usually is a ...
Yoni Tzafrir's user avatar
35 votes
3 answers
45k views

I have a http request that gets this Json object from a nosql database: let jsonBody = { birthday : 1997, firstname: 'foo', lastname:'bar' } Then I want to load this information into the ...
TSR's user avatar
  • 21.5k
0 votes
1 answer
658 views

I need the buttons within LeftFrame to change its appearance when clicked. In the class AccOne, I tried to do left_frame.acc1.config(releif='SUNKEN'), but I get NameError: name 'left_frame' not ...
B Food's user avatar
  • 115
0 votes
1 answer
826 views

In MongoDB I have a job sign up application. I have two collections- Jobs and HelperJobs. The first collection contains all the jobs and the second maps Helpers to the jobs they signed up for. I ...
user8578092's user avatar
-1 votes
1 answer
55 views

I am trying to create an application where within the main frame, there are two other frames (side to side). The left frame consist of buttons that are always visible. Those buttons will change the ...
B Food's user avatar
  • 115
2 votes
1 answer
804 views

I am trying to learn Realm basics by implementing a simple Android project. The idea is that user have several items and several item lists and an item can be added to any of these lists and a list ...
Tartar's user avatar
  • 5,492
0 votes
1 answer
231 views

I have a table materialGroup in which I store information about default material groups. Example: > MaterialGroup > - ID > - MaterialGroup_Name > - MaterialGroup_Price There is an ...
user3127554's user avatar
0 votes
1 answer
326 views

This is my code for finding the probability of different die cases in Yahtzee. I've figured out the yahtzee, and full house methods. But when I do the is_it_large_straight method it gives me an error ...
Amber H.'s user avatar
1 vote
1 answer
3k views

How to setup existing laravel 5 project and there database in Ubuntu 14.04 using xampp?
urni's user avatar
  • 49
2 votes
2 answers
1k views

Sup, i'm doing a little account registration just for learning propose. I created a class called Accounts and did many different functions to work with. With previous acknowledgment i knew that i need ...
Bruno Cerk's user avatar
1 vote
1 answer
298 views

I'm trying to create object data types in Oracle. I have an object type called type_transaction, I use this type of body EXTENDS functions. The compiler crashes the following error: "identifier '...
Karolina's user avatar
0 votes
1 answer
105 views

Scenario: (sort of Call center) (1) Customer Requests technician. (2) Request goes into queue for technicians to see. (2b) Customer gets confirmation email about submitting data (3) Technicians ...
Jessica Warren's user avatar
0 votes
0 answers
64 views

So I have a class called "PERSON" then three data structures "Employees" , "Manager" and "Customer" but manager should have everything that employee has but with more capabilities but not more member ...
Jessica Warren's user avatar

1
2 3 4 5