sql-server-2017

How to export SSRS 2017 report using REST API

拈花ヽ惹草 提交于 2020-06-10 10:13:10
问题 I've setup SSRS 2017.I need to export an SSRS report using their new REST API, I've been looking through the API specification here but I can't find a method in swagger specification to render/export that report using an HTTP client. This Question maybe asking for same that i'm looking for. 回答1: So far I know Currently, there is no method available in RestAPI provided by Microsoft available here There is an alternative to generate report by utilizing Url Access (SSRS) URL access to the report

Unable to create the tSQLtCLR assembly in SQL Server 2017

…衆ロ難τιáo~ 提交于 2020-04-10 07:57:55
问题 I recently installed SQL Server 2017 Express and localdb (general availablity). While attempting to install the tSQLt framework I've discovered a new security feature implemented in SQL Server 2017: the "clr strict security" option. This new security feature seems to prevent the creation of the tSQLtCLR assembly. The SQL error message states: CREATE or ALTER ASSEMBLY for assembly 'tSQLtCLR' with the SAFE or EXTERNAL_ACCESS option failed because the 'clr strict security' option of sp_configure

How to update data as json array and select data as json array in sql server

谁说我不能喝 提交于 2020-03-22 09:06:14
问题 I am new in SQL server 2017 for JSON result. I am storing JSON array in one column in my table. I am saving id's array in that table, but i want to update its relative text from other table, so please help me in this. create table #subjectList(subjectID int identity(1,1),subjectName varchar(50)) insert into #subjectList(subjectName) select 'Math' union all select 'English' union all select 'Hindi' union all select 'PC' union all select 'Physics' select * from #subjectList Create table

How to update data as json array and select data as json array in sql server

心不动则不痛 提交于 2020-03-22 09:05:20
问题 I am new in SQL server 2017 for JSON result. I am storing JSON array in one column in my table. I am saving id's array in that table, but i want to update its relative text from other table, so please help me in this. create table #subjectList(subjectID int identity(1,1),subjectName varchar(50)) insert into #subjectList(subjectName) select 'Math' union all select 'English' union all select 'Hindi' union all select 'PC' union all select 'Physics' select * from #subjectList Create table