Hi,
I have ssas cube with one dimension pointing to SQL server. When I try to process this dim in SSDT 2015, I am constantly getting below error.
Errors in the high-level relational engine. The following exception occurred while the managed IDbCommand interface was being used: [500] Could not execute the specified command: Input string was not in a correct format.;Input string was not in a correct format.
Input string was not in a correct format..
SQL queries
SELECT
DISTINCT
[dbo_Users].[dbo_UsersLoginID0_0] AS [dbo_UsersLoginID0_0]
FROM
OPENROWSET
(
N'SQLNCLI11.1',
N'',
N'
SELECT [LoginID] AS [dbo_UsersLoginID0_0]
FROM
(
SELECT VendorUserID, LoginID
FROM dbo.Users_Macys
)
AS [Users_Macys] '
)
AS [dbo_Users]