Filip De Vos
Filip De Vos
This driver is unable to connect to SQL Server LocalDB instance. When you attempt to connect to localdb the following error is returned: ``` Cannot connect: Unable to get instances...
Currently all the results are returned as `varchar(6000)` columns. A mapping should be made with `sys.columns` so the data can be casted to the native type.
When using a `varchar(max)` or `varchar(max)` column a `NULL` value is returned Repro script: ``` create table #longstrings (id int, name varchar(max)) insert into #longstrings values (1, cast(REPLICATE('X', 4000) as...
The minimum required permissions for executing the stored procedure should be checked. - Potentially deploying with execute as self & a check if the code is deployed with a sysadmin...