Skip to main content
New: Stack Overflow For Agents. The next generation of knowledge exchange. Learn more
Filter by
Sorted by
Tagged with
Filter by Employee ID
Best practices
0 votes
4 replies
66 views

We're building a SaaS platform for which we need to design a data model which could accompany domain specific data. We don't know the structure of domain specific data. So these are the evaluated ...
gokul656's user avatar
0 votes
1 answer
98 views

I have a script in postgres to create test data and error Error: relation "schema" does not exist is being thrown. I have verified that the schema and function exists and that I can run the ...
ferd tomale's user avatar
Best practices
0 votes
0 replies
42 views

How would this relational schema be drawn as an ERD? My attempt is shown above, though it is incorrect. I do not understand why. Here is the relational schema: CREATE TABLE student ( name TEXT, ...
Theo's user avatar
1 vote
1 answer
265 views

I´ve created a schema in DAB with this code in my yml file. resources: schemas: my_schema: name: my_schema_name catalog_name: my_catalog The schema is created ...
Siggerud's user avatar
0 votes
0 answers
110 views

I have 5 Swift Data models: SDPlanBrief, SDAirport, SDChart, SDIndividualRunwayAirport, SDLocationBrief I went live with my first release of the app, with no migration plan or versioned schemas. ...
Paul Wilson's user avatar
0 votes
1 answer
111 views

I would like to save objects like this to a local database. The object is a dictionary with various entries. For instance, the first entries are like: "id": "https://openalex.org/...
robertspierre's user avatar
0 votes
1 answer
135 views

I have an existing GridDB container created with the Python client: from griddb_python import griddb factory = griddb.StoreFactory.get_instance() gridstore = factory.get_store( host="127.0.0....
Abdullah Ch's user avatar
0 votes
1 answer
316 views

I'm reading csv files and processing them daily so I can append the data to my bronze layer in databricks using autolader. The code looks like this: def run_autoloader(table_name, checkpoint_path, ...
Boris's user avatar
0 votes
0 answers
92 views

In the below scala code, I am reading a parquet file, amending value of a column and writing the new dataframe into a new parquet file: var df = spark.read.parquet(sourcePath) val newDf = df....
adesai's user avatar
0 votes
0 answers
63 views

I am currently working on removing deprecated columns from my database. After dropping a specific column, I encountered the following error: SQLSTATE[42S22]: Column not found: 1054 Unknown column '...
luiza hf's user avatar
0 votes
1 answer
226 views

Our company has a policy where each app creates a dedicated database schema and two users per app schema - a runtime appname user and an admin appname-admin user (for running migrations). I was ...
oligofren's user avatar
0 votes
1 answer
677 views

I am using Visual Studio version 2022 to develop and maintain an application database. The database has over 1900 tables,1600 stored procedures, 1600 views, 200 triggers, 120 functions... It takes ...
MindDData's user avatar
0 votes
1 answer
92 views

Let there be 3 tables: A, B, C. A row in A may be associated to a row in B, or it may be associated to a row in C, but it must not be associated to both B and C. In other words, the association is an ...
Ivan Rubinson's user avatar
0 votes
1 answer
46 views

I got a problem when learning to create a schematic model of a prism, as below model User { id Int @id @default(autoincrement()) username String email String @unique password ...
user26630048's user avatar
0 votes
1 answer
105 views

I have a file named employee.csv with columns empid as integer and empname string. I am reading the files into a dataframe d1 by defining the schema and reading into another dataframe d2 as it is. The ...
Manish's user avatar

15 30 50 per page
1
2 3 4 5
196