Skip to main content
-2 votes
2 answers
120 views

I'm trying to create this partitioned table in my PostgreSQL database: create table messages_table ( id bigserial not null, class_name varchar(255), date_created timestamp, service ...
runnerpaul's user avatar
  • 7,564
0 votes
0 answers
76 views

I have a table with huge volume of data , and the same need to be get partitioned based on one integer column (purgeready) which only have two values 0 and 1. Since it is in production I want to ...
Sajin P's user avatar
0 votes
0 answers
33 views

We are using MySQL where we have almost around 100 tables. Data in these tables grow with time. So we need to delete the older data periodically. I think there are two approaches for this. First is to ...
Suparn Lele's user avatar
0 votes
1 answer
558 views

What is the most suitable way to create partitions for the already partitioned table TBLDATA with two indexes (TBLDATA~1 and TBLDATA~2) in the Oracle DB? My table consists of TBLDATA_MIN_PART, ...
Jakub Szamosi's user avatar
2 votes
0 answers
272 views

I am trying to create a view on top of two tables. Table 1: Partitioned by col1 Bucketed by col2 (no of buckets: 3600) Table 2: Partitioned by col1 Bucketed by col2 ( no of buckets:3600) View: Table1 ...
user2417458's user avatar
1 vote
1 answer
265 views

I'm exploring on MySQL table partitioning and I have a table which have 2 years of records. I'm trying to create a new table which is similar to the current table I have so that I can copy the data ...
darlisa's user avatar
  • 13
0 votes
1 answer
928 views

I would like to ask you for help, I've been looking for an example for days and I haven't found anything that works. I have a partitioned table in Oracle 11g and these are its last two partitions. ...
Miguelitus's user avatar
1 vote
0 answers
800 views

We are importing daily data (~600K rows) from Google GA4 into our data warehouse. We are trying to decide how we are going to store the data. We're considering either a partitioned table or a ...
Matthew Walk's user avatar
  • 1,044
3 votes
1 answer
10k views

I want to create a partitioned table in the PostgreSQL database and run the below query. CREATE TABLE tracking_trackingdata ( "id" uuid NOT NULL, ...
Anuj TBE's user avatar
  • 9,922
0 votes
1 answer
943 views

I have a requirement to drop multiple partitions for a table every month. The table has been partitioned based on the year and month and has partitioned local indexes 1.since the indexes are local ,I ...
user9668693's user avatar
0 votes
1 answer
145 views

I have a table let's call it movie that is partitioned by genre. I have a trigger defined on one of the partitions as follows: create trigger refresh after insert or update or delete on movie_comedy ...
kylie.zoltan's user avatar
0 votes
0 answers
274 views

I have a large SQL table with 100+ million records in SQL Server as follows: +-----------+----------+----------+----------+----------+ |CustomerID |TransDate |Category | Num_Trans |Sum_Trans | +-------...
Arash's user avatar
  • 149
0 votes
1 answer
1k views

I'm using postgresql and python sqllachmey for creating the partitioned table. Below is the example code. from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.types import Text Base ...
Loki's user avatar
  • 15
0 votes
2 answers
190 views

For example please find the below data: account balance 9999 110 9998 111 9997 112 9996 113 9995 114 9994 115 9993 116 9992 117 9991 118 9990 119 The output should be in such a way that there are 5 ...
saikiran andey's user avatar
0 votes
1 answer
1k views

So, I have a table that typically has around 300-500K rows being inserted in to it within a 24 hour time period. Data is also continuously queried from this table. There is an Intime column that holds ...
Chetan's user avatar
  • 463

15 30 50 per page