Viewing 15 posts - 1 through 15 (of 24 total)
Yes that's correct, see here: https://learn.microsoft.com/en-us/sql/relational-databases/polybase/polybase-errors-and-possible-solutions?view=sql-server-ver16
It mentions: This error is likely due to changing the PolyBase service account. To change the service accounts for the PolyBase Engine and...
July 25, 2024 at 1:21 pm
I found your same error message here: https://rafaeldontalgoncalez.com/2018/10/sql-server-2019-polybase-mongodb
Give me the results of this query: SELECT * FROM [DWDiagnostics].[dbo].[pdw_errors]
July 24, 2024 at 6:40 pm
I googled a little bit and it could be the account doesn't have permissions, you need to dig further into the logs. Also, take a look here: https://learn.microsoft.com/en-us/sql/relational-databases/polybase/polybase-errors-and-possible-solutions?view=sql-server-ver16
July 24, 2024 at 2:19 pm
According to this: https://www.cdata.com/kb/tech/access-odbc-polybase.rst
You would put the DSN in the connection options:
CREATE EXTERNAL DATA SOURCE cdata_access_source
WITH (
LOCATION = 'odbc://SERVER_URL',
CONNECTION_OPTIONS = 'DSN=CData Access Sys',
-- PUSHDOWN =...
July 24, 2024 at 1:09 pm
In the external data source you don't specify the database name. It is in the external table that you specify the database name, for example:
-- SQL Server
CREATE...
July 24, 2024 at 3:49 am
Big Data Cluster is similar to SQL Server on Linux with Polybase, so you can only connect to Hadoop, Oracle, Teradata and Cosmos, you can't connect to other ODBCs.
December 29, 2021 at 3:20 pm
It is also important to note there is a 32-bit and 64-bit installer, you can use either of them. If it is the 64-bit version, the connection options must be...
October 19, 2021 at 3:35 am
In the book "Hands-On Data Virtualization with Polybase" you learn how to install SQL Server on Windows Server Core running on Docker Windows, so you don't rely on Microsoft.
August 14, 2021 at 10:10 pm
In the book "Hands-On Data Virtualization with Polybase" you learn how to install SQL Server on Windows Server Core running on Docker Windows, so you don't rely on Microsoft.
July 11, 2021 at 4:40 am
Hi eliassal, you can easily modify the script to substract 45 days from the X value, then you will get what you want. Just remember the value of in...
May 26, 2021 at 10:43 pm
Hi eliassal, yes the code looks good, so you have the database name, the starting point (day 0, 45 days ago, with size 47 for StackOverflow2013), and the final point...
May 25, 2021 at 6:05 pm
Hi eliasal, in that case you can rewrite the query as follows:
SELECT [Name], 0, b
FROM [lr] GROUP BY [Name], [m], b
UNION ALL
SELECT [Name], 90,...
May 25, 2021 at 4:00 pm
Hi eliassal, this is calculated in the CTEs named [slope] (calculates m) and [lr] (linear regression), then you can see in the next statement it is grouped by [m] and...
May 25, 2021 at 2:26 pm
Hi eliassal, can you please clarify your request?
May 25, 2021 at 1:13 pm
I miss seeing more articles daily, but it's understandable the fatigue you're facing, I would like to see more people supporting this project to give you a rest.
April 28, 2021 at 8:04 pm
Viewing 15 posts - 1 through 15 (of 24 total)