Davide Mauri

Results 34 issues of Davide Mauri

### What happened? I have a stored procedure like the following: ```sql create procedure dbo.stp_Dummy @mandatoryParam int, @optionalParam int = 10 as select @mandatoryParam as mandatoryParam, @optionalParam as optionalParam go...

bug
graphql
rest
config
stored-procedure

### What happened? If I try to use PUT or PATCH on a table like the following: ```sql drop table if exists dbo.some_entity; create table dbo.some_entity ( id int not...

documentation
validation
improvement

Add support for marking a session as favorite: - If user is logged add an empty star icon at the right of the session title - When user click on...

enhancement

When generating the connection strings via `sqlcmd config connection-strings`, the ADO.NET doesn't work as is: - The connection string contains spaces that make it hard to just copy-and-paste it into...

bug
sqlcmd switch

It would be great if there could be an option to attach to the created container a exiting or a new data volume so that databases can be stored in...

enhancement

It would be create if sqlcmd could support the creation of database users/logins. For example, something like ``` sqlcmd user add -u Davide -p ``` for adding a SQL user...

enhancement
sqlcmd switch

If target table already exists, create a copy of the table, without any data, into a dedicated staging schema (configurable via config file), with no indexes and constraints.

enhancement

Add an option to disable FK in the destination table. The option should also allow the user to decided if re-enable them and the end of the process

enhancement

If a source table has a cluster index, that should be used for logical partitioning, as a much cheaper alternative to %%PhysLoc%%, that cannot be pushed into the Storage Engine

enhancement

Bulk load complains about mismatched column names when copying EDGE or NODE tables

bug