Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
26 views

I have three table named Content, Reaction and ReactionTypes, the Content and ReactionTypes tables are connected to Reaction table using One to Many relationship. Now, Category and Score are the the ...
Penguin's user avatar
  • 21
0 votes
1 answer
61 views

In Cassandra, data are usually denormalized to match the query pattern. However, with vector columns, it means duplication of the same vectors. I know vector similarity search and index is very ...
Bin Wang's user avatar
  • 2,777
-1 votes
2 answers
174 views

Is it normal / best practice to have multiple fact tables but only minimal dimension table(s). I am new to data modelling and trying to create the best / most efficient data model and it always seems ...
JoshB's user avatar
  • 11
1 vote
1 answer
126 views

I am currently attempting to model fire outbreaks using precipitation as a covariate. Upon reading various suggestions, I came across the quadscheme function in R. According to the documentation, the ...
Alex Monito Nhancololo's user avatar
2 votes
1 answer
808 views

I'm looking at an example where the enable load is unchecked. This automatically grays out the include in report refresh option. So it neither loads into the model nor does it refresh this table. ...
variable's user avatar
  • 9,886
1 vote
1 answer
31 views

I am trying to build an Airbnb clone. Depending on whether your listing is an entire place, private room or shared room, it gives you different options to fill out about the bathrooms and locks ...
Maximiliano Castrejón's user avatar
0 votes
1 answer
67 views

as personal project, I'm creating a small data model from a dataset. Right now I'm facing issues in creating a foreign key between two tables. CREATE TABLE IF NOT EXISTS public."Years" ( ...
Fab's user avatar
  • 5
0 votes
1 answer
68 views

As the model in the table, I have the bill of materials table as the fact table and the price and demand tables and dimensions, I need to create 1- measure to calculate the total required quantity per ...
Ramez Ali's user avatar
1 vote
1 answer
458 views

is it possible to merge two different pbix files in single pbix file like customer.pbix and sales.pbix file can be merged and create single file in power bi desktop
Wajahat kayani's user avatar
0 votes
1 answer
627 views

This is my code on google collab # Import library from pycaret.classification import * exp_clf = setup(data, target='target', normalize=True) best_model = compare_models() And this is the result ...
Aristo Lie's user avatar
-1 votes
2 answers
55 views

I was just given a PowerBI file that gets its data from some really messed up views in SQL Server. Basically, the database they're getting their data from is an OLTP database, and they don't seem to ...
Pieter's user avatar
  • 724
1 vote
0 answers
52 views

I have a data table in Excel in which each row corresponds to a specific deal event and has various different fields associated in the other columns. This data looks something like: Deal ID Amount ...
Stats DUB01's user avatar
1 vote
2 answers
146 views

I have inherited a star schema based report. However the keys (links) are text fields. Not numeric ids. For example: The DimClient has values like: Client Name JLR Mercedes Audi Volvo And the ...
variable's user avatar
  • 9,886
0 votes
0 answers
32 views

Data is in 20 batches of 1000 characters with a vocab of 10510 words. While trying to create an LSTM model to detect ai generated text, my model returns `ValueError: Exception encountered when calling ...
SimpleRandomJoe's user avatar
0 votes
1 answer
49 views

We have a dimension table with day care facilities and a fact table where we receive the monthly number of taken spots per age category (3 cetagories). Per facility we also have the number of ...
JessiSexy's user avatar
0 votes
1 answer
46 views

Scenario: There is a many-to-many relationship between orders and widgets. I.e. an order contains several widgets, a widget can be contained in several orders In the source data (two JSON documents ...
codeape's user avatar
  • 102k
1 vote
1 answer
426 views

My facts are Tickets (1m rows) and Ticket Actions (0.6m rows), with various dimensions (showing 2 here for simplicity) - some common to both, some unique, e.g. Action Type relates only to Ticket ...
deethreenovice's user avatar
1 vote
1 answer
41 views

I encounter a problem sorting data on Cassandra using CLUSTERING ORDER BY. The returned data is not sorted as expected with the following conf: Any idea why the result is not sorted as expected ? ...
Fabien Crovetti's user avatar
1 vote
0 answers
112 views

I am hoping for some assistance with data modelling. I have created a sample database to show my problem. https://1drv.ms/u/s!Ap6q8W-mvm27hKRL1J85BopnnrfYRQ?e=tgASW4 Essentially I have a client and ...
Moomoob's user avatar
  • 11
0 votes
1 answer
92 views

I have an interesting problem. I am trying to create a relationship from an Excel File containing 'Business Days' with only Dates/Month Name/Days/Year and connecting that to a SQL Database source in ...
Ryan Crary's user avatar
-4 votes
1 answer
85 views

I want to create a VIEW TABLE in my database based on a source table in SSMS (SQL Server). But it's super hard to get the wanted view table format. Here I present an example of the source table. ...
Arc Angel's user avatar
0 votes
2 answers
950 views

I am building a DQ testing application in Snowflake. Below is a simplified version of the data model (I renamed objects for the sake of clarity). I have multiple config tables for different tests (e.g....
Sergii's user avatar
  • 157
1 vote
0 answers
22 views

We have a collection with ItemId/DateTime/Location fields. We are tracking Items and their Locations (like, Storage1 or Building2 or City3. etc.) in time, Item might change its Location several times ...
Shaddix's user avatar
  • 6,119
0 votes
0 answers
59 views

I currently have two resources in my application: A File representation in the files collection: _id: file1 fileGroups: ["group1"] and a FileGroup in the file_groups collections _id: group1 ...
firstdorsal's user avatar
0 votes
0 answers
48 views

the fact table in my current model have a column called reporting_currency. and there is an other column called rep_id If the rep_id is 1,2,3,4 then reporting_currency is for Revenue. If rep_id is 5,6,...
sarvani's user avatar

1
2
3 4 5
63