Content
MS SQL 2019 Developer Edition Download Link
Hi, I'm trying to find link for MS SQL 2019 Developer Edition. But all links lead to https://www.microsoft.com/en-us/sql-server/sql-server-downloads where SQL 2022 is. Where can I find link to download SQL 2019 Dev?


indexes in view
Hi Expert, How to create indexes in view as it is taking more than hour to run alter view view1 as select col1,col2,col3... from table1... total 35 columns


index not exists
After removing the indexes from the table, using the sys.indexes query, the removed indexes are still displayed. Although the deleted indexes do not exist in the table index folder. If this query is Join with sys.partitions, we will have the output of…


[SSRS] How to get detail error message by table :ExecutionLogStorage
I execute SQL without error message detail , only Status rsProcessingAborted : SELECT B.Path ,a.* FROM [ReportServer].[dbo].[ExecutionLogStorage] A,[ReportServer].[dbo].[Catalog] B WHERE A.REPORTID=B.ItemID AND B.Path ='Reportpath' ORDER BY…


Can an INSERT statement block SELECT ?
Hi All, Can an INSERT statement block SELECT statements? not sure why ? Can anyone help me understand in what scenarios it may happen? Thanks, Sam


can replication be limited to just some tables in the db?
hi , can replication be limited to just some tables on the db or must it be on the entire source db? and if the source has timestamps, will there be any problem for sql to keep them as is on the target/replicated db?
Change Tracking - Multiple xdes_id in table [sys].[dm_tran_commit_table] for the same commit_ts
Change Tracking is activated on a Microsoft SQL Server 2012 To get the Commit Date of the changes we LEFT JOIN on table [sys].[dm_tran_commit_table] FROM CHANGETABLE(CHANGES [Grf].[ChangementStatut], 55169) ct LEFT OUTER JOIN…


database reference for Linked Server Object
Hi all, I imported a SQL Server 2016 database into a VS 2022 SQL Server Project and the import finished without exceptions. When I tried to build the project, though I got a whole bunch of warnings about non existent referenced objects and that is…


SQL Server (SSMS) not listing all of the network servers
Using SSMS on the network server (which contains the network server DB) and laptop workstations, when executing SSMS on the network server, it only lists itself when selecting "Browse for more on the "Server Name" pull-down menu. However,…


join 3 views in one view
Hi Expert, i wanted to join three views in one using temp table i.e. Create view test1 as select col1,col2 into #temp1 from view1 select col1,col2 into #temp2 from view2 select col1,col2 into #temp3 from view3 select col1,col2 from #temp1 a join #temp2 b…


Maintenance on Mirroring witness server
Hi I have couple of automatic failover mirroring setups and a single host which acts as a witness for all the mirroring set up I have. Now I am planning a maintenance window on my witness server. I want to study the impact on my mirroring setup when my…
Entity Framework Core can't create migrations table using created login
I am doing a some training with .Net 6.0, C# and Entity Framework Core. I got to the point that EF can generate a new migration but hen I run dotnet ef database update I am getting an error: Failed executing DbCommand (38ms) [Parameters=[],…
WITH common_table_expression
Dear All, I'm using SQL server 2016. On the page Microsoft Documentation, I see the following code. However, I don't understand the meaning of the paragraph under the heading CTE_query_definition. Could anybody tell me the meaning of this paragraph? […


blocking behaviour using hints
Hi All, We are seeing SELECT's blocking DML's like UPDATE statements. When we tried to check with application team, they said they are using with (ROWLOCK) hint in most cases. So, I tried to repro but not able to reproduce the issue of SELECT with…


How to move SQL server database to another drive
Hi How to move SQL server database to another drive? I tried before by making offline, move physical database file and make online again but it failed, please help
Help in Formatting without mentioning column name in SQL
Hi, How I can get the following desired result without mentioning column's name in the query. Select * from country CCode CName CPost CDest CSET CPOS CJOH 001 AU L1 RE 1 2 …
TSQL Convert Binary64 text to an image so it can displayed in reports
We have some code, as follows which we are trying to convert Base64 string to an image so that it can be displayed in reports. However, in SSRS, we get the following error message when trying to display the image: What needs to be changed in this…
Can Microsoft SQL Server 2019(RTM) be restored on 2016 SQL Server?
Microsoft SQL Server 2019 (RTM) - 15.0.2000.5 (X64) Sep 24 2019 13:48:23 Copyright (C) 2019 Microsoft Corporation Express Edition (64-bit) on Windows Server 2019 Standard 10.0 <X64> (Build 17763: ) (Hypervisor) Using management studio to…
SSIS package Error: Cannot create a task from XML for task "Script Task", type "Microsoft.ScriptTask" due to error 0x80070057 "The parameter is incorrect.".
Hi, I get error while running DTExec.exe in cmd which executes SSIS package. The SSIS package job runs well when I run in VS 2019 manually, but throws error from cmd. command I have executed in cmd: "C:\Program Files\Microsoft SQL…


Unable to access unc shared folder remotely using pull subscription of snapshot replication
What could be the possible causes for a pull subscription of snapshot replication unable to access the unc shared folder remotely but a pull subscription is able to access the unc shared folder and replicate successfully? Where do I troubleshoot at…