can i detect changes in my ODS tables before inserting it in dimension table in the DWH , i use sql and pentaho for data alimentation for information i use 4 tables to alimente my demension table ! so how can i detect changes in the 4 tables before using them ?
scd slow changing demension how can i detect changes?
39 views Asked by DRISSI EL Houcine At
1
There are 1 answers
Related Questions in SQL
- SQL schema for a fill-in-the-blank exercise
- Hibernate: JOIN inheritance question - why the need for two left joins
- What's supposed to be the problem in this query?
- Compare fields in two tables
- How to change woocomerce or full wordpress currency with value from USD to AUD
- Dynamic query creation with Array like implementation
- SQL query to get student enrolled in this month in a course - Moodle
- SQL LAG() function returning 0 for every row despite available previous rows
- Convert C# DateTime.Ticks to Bigquery DateTime Format
- Use row values from another table to select them as columns and establish relations between them (pivot table)
- SQL: Generate combination table based on source and destination column from same table
- how to use system's environnement variables in sql script
- PHP fetchAll on JOIN
- Multitable joining in Sql
- How to display name starting from 'z' by using BETWEEN cmd only?
Related Questions in PENTAHO
- Git Not In Sync with Local Branch
- How to write a blob file to local filesystem using PDI?
- Where I download the Pentaho Community Edition, link breadk on sourceforge
- Pentaho PDI || Windows Current User
- Slowly Changing Dimension Type 2
- Json is sending Überlegung character convert in pentaho different format
- Amazon S3 multi part upload error using Pentaho 9.3
- Multiline parsing in Fluent-Bit for pentaho jobs on kubernetes
- Set Variable In a Pentaho Loop
- Get row number from stream to perform concat
- pass parameters to database connection in pentaho using jenkins freestyle job
- Troubleshooting 'No such file or directory' Error for Network Paths in Pentaho Server Job Execution
- Pentoho How to check ,If at least one row is LDAP is 0 with same user mutiple times
- Problems returning csv data, pentaho reading failure
- Pentaho Unable to access Remote Excel file
Related Questions in DETECT
- detect catalina.out log path from a running tomcat on non-Windows
- How to detect a pressed button using setInterval and without any event in javascript?
- CRC32 checksum in Excel
- Union of intersected rotated boxes
- Tensorflow Script doesn't detect my images
- Detect a click on a specific x and y coordinates from an imageView
- How can I detect if a nondirectional key has been pressed in a console application using an optional parameter in a method?
- Is there any way to detect the event on input field, when it's disabled using angular?
- How to detect the remote app is woring while my app is running
- Emgu.CV.CvInvoke' threw an exception FaceDetectionAndRecognition
- How to set max time of each scenes when using PysceneDetect
- The nRF52 didn't detect the I2C address of the ultrasound sensor (RCWL9620) on the I2C bus
- find rectangle with specific width and height
- osm2pgsql error: Cannot detect file format for 'postgres'. Try using -r
- How to fix my script to merge my two functions OR call them in specific order?
Related Questions in CHANGESET
- Does executing "ntpd -q" while running an active NTPD alter the kernel discipline? How would I check if it was changed? Suse linux
- Changeset Salesforce Error: Cascade or Restrict Delete: field integrity exception: unknown
- Looking for the correct "boundary" value to use in Microsoft Dynamics Web API Batch Changesets
- Azure DevOps / Pipeline & Artifacts / Unable to publish packages with @changesets/cli
- Liquibase 4.21 onwards not creating the changelog. DATABASECHANGELOG is empty
- Ending Jenkins Pipeline Early
- Liquibase Error : Cannot load service: liquibase.hub.HubService: Provider liquibase.hub.core.StandardHubService could not be instantiated
- Can I publish only a subset of packages in one Turborepo, using Changesets?
- How can I access the JSON part of the response from Postman batch requests?
- How to write Mongo db changeset to remove child node
- Powershell - Skip/overwrite the data which is already fetched instead of appending
- GIT not picking up changes when files are copied
- Using existing entries in an Ecto changeset function
- In Groovy is there a way to execute a `build` step only if there had been changes since the last build?
- scd slow changing demension how can i detect changes?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
There two transformations steps that can help you comparing the content of two tables, Merge rows (diff) or Table compare.
You could keep a copy of the tables and each time you run your process compare the actual content with the content of the last copy, although that approach is not performance wise if the tables are too big.
Or if your database allows auditing of changes, you could activate that audit and just retrieve the rows your auditing say have been changed since last load.
There's also the option of using in the database a trigger that assures the modification date is updated each time a row is changed, so using the column where you store the modification change you can retrieve the rows changed.