ChatGPT in Visual Studio tutorial
In this article, you will see how ChatGPT works with a database project.
2023-05-01
12,186 reads
In this article, you will see how ChatGPT works with a database project.
2023-05-01
12,186 reads
2022-04-06
45,700 reads
Learn the step by step process to install SQL Server 2019 Integration Services in Visual Studio as well as the history for the tool.
2020-07-16
In this article, you will explore tools and extensions that can be used with Visual Studio 2019 to improve your database experience irrespective of what database you use.
2019-10-15
Install Visual Studio 2015 in Windows Server without Internet Connection
2018-01-15
8,705 reads
2011-03-17
2,113 reads
2011-03-10
2,033 reads
2011-03-03
2,205 reads
2011-02-24
2,169 reads
2011-02-17
2,459 reads
By Steve Jones
We published an article recently at SQL Server Central on Tally Tables in Fabric...
By James Serra
In today’s data-driven world, organizations need the ability to analyze and act on data...
This month’s T-SQL Tuesday blog party is hosted by Deborah Melkin – Data Platform MVP,...
Comments posted to this topic are about the item Dynamic T-SQL Script Parameterization Using...
Hi , Im Facing the Below Issue in Ananlytics. We have a Inventory Partition...
Any suggestions for a good tool for documenting a database and all the important...
I created a new sequence in SQL Server 2022 with this code.
CREATE SEQUENCE myseqtest START WITH 1 INCREMENT BY 1; GOI want to use this to insert some data from another table into a new table with this sequence. Which of these queries shows the way to do this efficiently?
-- 1 INSERT dbo.NewMonthSales (SaleID, saleyear, salemonth, currSales) SELECT NEXT VALUE FOR myseqtest , ms.saleyear , ms.salemonth , ms.currMonthSales FROM dbo.MonthSales AS ms; GO -- 2 INSERT dbo.NewMonthSales (SaleID, saleyear, salemonth, currSales) SELECT NEXT VALUE , ms.saleyear , ms.salemonth , ms.currMonthSales FROM dbo.MonthSales AS ms, myseqtest; GO --3 DECLARE mycurs CURSOR FOR SELECT ms.saleyear , ms.salemonth , ms.currMonthSales FROM dbo.MonthSales AS ms DECLARE @yr INT, @mn INT, @sales NUMERIC(10,2) FETCH NEXT FROM mycurs INTO @yr, @mn, @sales WHILE @@FETCH_STATUS = 0 BEGIN INSERT dbo.NewMonthSales (SaleID, saleyear, salemonth, currSales) SELECT NEXT VALUE FOR myseqtest , @yr , @mn , @sales FETCH NEXT FROM mycurs INTO @yr, @mn, @sales ENDSee possible answers