Where do you put your business logic? In stored procedures?
There seems to be two trains of thought and I think this is mainly down to who and where your...
2016-05-05
33 reads
There seems to be two trains of thought and I think this is mainly down to who and where your...
2016-05-05
33 reads
There seems to be two trains of thought and I think this is mainly down to who and where your...
2016-05-05
33 reads
There seems to be two trains of thought and I think this is mainly down to who and where your developers are. The first is that a stored procedure...
2016-05-05
6 reads
I saw recently an email where someone stated that the reason that they manually create deployment scripts is that because...
2016-05-03
796 reads
I saw recently an email where someone stated that the reason that they manually create deployment scripts is that because...
2016-05-03
49 reads
I saw recently an email where someone stated that the reason that they manually create deployment scripts is that because...
2016-05-03
46 reads
I saw recently an email where someone stated that the reason that they manually create deployment scripts is that because of the restirctions put on them by the requirements...
2016-05-03
2 reads
Code coverage gives you an indication of how well tested a particular area is. It is not a measure of...
2016-04-11
438 reads
Code coverage gives you an indication of how well tested a particular area is. It is not a measure of...
2016-04-11
40 reads
Code coverage gives you an indication of how well tested a particular area is. It is not a measure of...
2016-04-11
35 reads
One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...
By Kevin3NF
Flexibility and Scale at the Database Level When SQL Server 2012 introduced Availability Groups...
Setting page visibility and the active page are often overlooked last steps when publishing...
i have subscription of github copilot which i can access in vs 2022 comunity...
Comments posted to this topic are about the item Password Guidance
Comments posted to this topic are about the item Using table variables in T-SQL
What happens if you run the following code in SQL Server 2022+?
declare @t1 table (id int); insert into @t1 (id) values (NULL), (1), (2), (3); select count(*) from @t1 where @t1.id is distinct from NULL;See possible answers