Skip to main content
Filter by
Sorted by
Tagged with
1 vote
2 answers
109 views

Recent versions of Microsoft SQL Server allow creating a clustered columnstore index on a table that has computed columns, as long as they are not persisted computed columns. [1] I would like to get ...
Ed Avis's user avatar
  • 1,622
-1 votes
1 answer
60 views

I have a [dbo].[SalesBudgetMonths] table with a columnstore index on it. When I join to a physical table dbo.Sellers on the indexed column [Seller] like this: ;WITH s1 AS ( SELECT 232 AS Id ) ...
Dominik's user avatar
  • 207
1 vote
1 answer
151 views

We are using Azure Databricks notebook where we are connecting Azure Datawarehouse service to get records from a table and copy the data of that table into another table in our Sandbox schema. Here is ...
SRP's user avatar
  • 1,223
0 votes
1 answer
137 views

I'm currently working with singlestoredb. default storage type for my db is rowstore. I wanted to know if I can create columnstore tables if default_table_type is set as "rowstore" in my DB. ...
Tannishtha Mukhopadhyay's user avatar
0 votes
0 answers
473 views

I've a table that has a clustered columnstore index having 8 billion records. Once in a day, there is a process that inserts, updates and deletes data from this table with around 1-30 million record, ...
codingIsCool's user avatar
0 votes
1 answer
120 views

I use official mariadb/columnstore docker image. I run docker compose with MaxScale and try to imitate the situation when one of the msc node is disconnected and connected again. I can see in mcs ...
pavel's user avatar
  • 41
0 votes
1 answer
1k views

I have a partitioned table like this: CREATE TABLE [dbo].[OrderDetailMessage] ( [OrderDetailMessageId] [BIGINT] IDENTITY(1,1) NOT NULL, [Id] [UNIQUEIDENTIFIER] NULL, ... ) ON [...
Lusine Babayan's user avatar
0 votes
1 answer
2k views

I'm new to Snowflake relatively. I get that it's a columnar based database. That's not exactly magical - it's just better at more Analytics / BI workloads as opposed to more writing transactions. So ...
user45867's user avatar
  • 983
1 vote
1 answer
247 views

I know that this kind of join is supported, but it doesn't work for me for the next case; Given the tables: CREATE TABLE person_cs( firstName VARCHAR(255), lastName VARCHAR(255), address ...
Shay Zambrovski's user avatar
0 votes
1 answer
247 views

I've installed MariaDB Community Edition 10.11.2 on Docker (on Windows) and have been reading on how to install ColumnStore and almost everywhere I find instructions (including the official site), it ...
Ray's user avatar
  • 5
0 votes
1 answer
89 views

I have a usecase where my memsql db will look something like this DB- USER country company user_id passphrase timestamp India google 123 xyz 10:00AM India google 123 ABC ...
Shambhavi Rai's user avatar
1 vote
1 answer
145 views

following query is causing huge cpu utilization and high latency on my db environment. i have tried to improve the query performance with different type of indexes but unfortuanately any indexes not ...
sportyrdy's user avatar
0 votes
1 answer
2k views

I have a partitioned table that contains approx. 16 billion rows. The table has a clustered columnstore index and one partition aligned non-clustered index. The partitions are all on the same ...
SFDCShark's user avatar
0 votes
0 answers
458 views

I'm trying to set MAXDOP option on a non-clustered columnstore index using the following ways and it doesn't seem to be sticking. Server is SQL Server 2019. Index properties -> Options Page -> ...
neel's user avatar
  • 1
1 vote
0 answers
133 views

I'm having a strange issue with a MariaDB Community 10.6 with ColumnStore installation running on a Ubuntu 20.04. After I start the server and my application begins sending queries to it, the process ...
Patrick A Gonçalves's user avatar
0 votes
0 answers
439 views

I am having problem with changing the parameter INMEMORY_SIZE in oracle database. I used the below script to set this parameter: ALTER SYSTEM SET inmemory_size=300M scope=spfile; And it raised the ...
Windy764's user avatar
0 votes
1 answer
411 views

I have a set of existing tables in a singlestore database, many of which are columnstore tables. I want to build a python script that will migrate my development tables to production tables. The dev ...
Lisle's user avatar
  • 1,700
0 votes
1 answer
504 views

In SQL Server, I have a table using Columnstore Index, need to do some aggregate step, but if the where clause contains "or", the predicate pushdown will Gone, I don't know why, anyone have ...
othree's user avatar
  • 1
1 vote
0 answers
324 views

I have an SQL Server (2019) database with some bigger fact tables (about 200 million rows). I created clustered column store indices on each of them. When I open the properties of the index of one of ...
bookofproofs's user avatar
0 votes
0 answers
409 views

Mariadb Details: 10.3.11-MariaDB I am trying to import bunch of CSV files in a newly created table on Mariadb columnstore engine. Steps I performed: 1)Create Table CREATE TABLE IF NOT EXISTS `...
vasav anandjiwala's user avatar
0 votes
1 answer
1k views

I created a partitioned table in SQL Server as follows: --Add File Groups ALTER DATABASE TEST ADD FILEGROUP JAN; GO ALTER DATABASE TEST ADD FILEGROUP FEB; GO ALTER DATABASE TEST ADD FILEGROUP MAR; GO ....
Ivan Lin's user avatar
0 votes
1 answer
625 views

I have added a columnstore index to the cube.partition_daily table Error message: Msg 10799, Level 16, State 1, Line 123 This is not a valid data compression setting for a columnstore index. Please ...
Shoaib Maroof's user avatar
0 votes
1 answer
474 views

I have a new installation of MariaDB 10.5.8 which includes Columnstore as a plugin. I'm facing an issue when I try to insert rows into a columnstore table from a select statement. I have narrowed it ...
Juan Arias's user avatar
1 vote
1 answer
1k views

I have been searching for a while that how to install mariadb column store on windows. I have Windows 10 on my system. How can I install Column Store on Windows?
Muhammad Muaaz's user avatar
0 votes
1 answer
548 views

I have read this somewhere about the core technologies being the same in Power BI as well as the one used in MS SQL Server, but I am not able to find anything from Microsoft linking these two ...
Teja Rebb's user avatar

1
2 3 4 5