Skip to main content
-2 votes
1 answer
159 views

I'm attempting to copy a table from an on-premises SQL Server to Azure Storage using a data pipeline in Fabric. The table consists of 5 columns and 1000 rows, with all columns being of type varchar. ...
Sudheesh Nagamalla's user avatar
1 vote
2 answers
112 views

I Have a mysql(v8.x) table with 4 Billion records and I need to partition on one of the varchar column. Partition on date column or integer column doesn't work in this case. This is a unique usecase. ...
Bobby's user avatar
  • 25
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
1 vote
1 answer
834 views

I have table which is already designed to partition based on month range. I am writing code in java to check all existing partitions and would create a new one when it doesnt exist. If I create a new ...
Prashant's user avatar
2 votes
3 answers
2k views

I am looking for a solution that lists all the range partition information. Tried the below query. SELECT c.relname as partition_list,p.relname as parent_tbl FROM pg_inherits i JOIN pg_class p ON i....
dp1212's user avatar
  • 109
0 votes
1 answer
886 views

I'm trying to create a new table in a dedicated SQL pool which will have approx. 43800 records each month. My questions are - Should I create month-wise partitions? When should I create a partition, ...
Vivek KB's user avatar
0 votes
0 answers
586 views

I am testing with creating a data warehouse for a relatively big dataset. Based on ~10% sample of the data I decided to partition some tables that are expected to exceed memory which currently 16GB ...
smg77's user avatar
  • 5
1 vote
1 answer
1k views

I'm trying to create a kudu table partitioned by hash and by range with 2 variables (year, month), My problem is that I want to make biannual range partitions, without add more columns in the table. ...
Sil's user avatar
  • 11
1 vote
0 answers
801 views

So basically we have a very large table in Postgres 11 DB which has hundreds of millions of data since the table was added. Now we are trying to convert it into a range based partition table based on ...
Rohit Singh's user avatar
  • 2,311
0 votes
1 answer
371 views

I am trying to use range partition on a table for a column of type number. However, Oracle 12c throws an error saying it is an invalid data-type. I don't understand why/what is invalid in the command. ...
Shravan J Kumar's user avatar
0 votes
1 answer
3k views

I have one application to store and query the time series data from multiple sensors. The sensor readings of multiple months needed to be stored. And we also need add more and more sensors in the ...
yyuankm's user avatar
  • 385
0 votes
1 answer
684 views

I've an unique requirement for finding min / max value from a partition's range values. The idea is to gain on response time by querying metadata rather than the table itself. for e.g. I've a table ...
user14227141's user avatar
0 votes
1 answer
1k views

For Parquet table I use SHOW FILES IN db_name.parquet_table_name to get all my partitions names, size and path for my Parquet table. For Range partitions I use SHOW RANGE PARTITIONS db_name....
mongotop's user avatar
  • 5,794