Automating CRUD procedures generation using T-SQL (enhanced).
In this post I will describe the helper procedure that based on metadata generates numerous database objects around views and...
2019-01-03
376 reads
In this post I will describe the helper procedure that based on metadata generates numerous database objects around views and...
2019-01-03
376 reads
In this article I continue to explore the ways to secure the data via contextual views and describe the technique...
2018-10-18
516 reads
In this post we will discuss how to fetch data from a large dataset for web applications using pagination technique....
2018-10-17
404 reads
This post helps in deciding between choosing foreign key and check constraints in case we need to constraint the data...
2018-10-16
438 reads
We are often required to pass the data between different database procedures and functions. In this post I will review...
2018-09-06
310 reads
In this post I will show how in some cases we can split a long procedure to a small and...
2018-05-23
1,756 reads
I try to avoid dynamic SQL as much as possible and consider it as a necessary evil. However, in some...
2018-05-21 (first published: 2018-05-09)
2,493 reads
In this post you will find two small functions that convert binary value to a decimal one and vice versa.
2018-05-19
412 reads
Deployment process equally responsible for deploying both database objects as well as an initial state of the database/applications. In this...
2018-05-10
612 reads
Designing implementation of interface is as critical as designing interface itself. In this post we will discuss some advice on...
2018-04-14
1,293 reads
By James Serra
There are three Azure SQL products with so many different deployment options, service tiers,...
By Steve Jones
I hosted this month’s T-SQL Tuesday party with my invitation asking about tracking permissions....
By Steve Jones
I was asked to do some a little thinking and brainstorming recently. Rather than...
I just learned that my database was created on my C:\ drive in the...
I am needing to migrate a MSSQL db to MySQL, on a different server...
Hi we run 2019 ssas std. Yesterday i imported my tabular project to vs...
I have a complex database with a few filegroups and files. Can I run a backup command like this? (assume file/filegroup names are valid).
BACKUP DATABASE [complex] FILE = N'thirdone' , FILE = N'thirdtwo' , FILEGROUP = N'second' TO DISK = N'C:\Program Files\Microsoft SQL Server\MSSQL16.SQL2022\MSSQL\Backup\complex.bak' WITH NOFORMAT, NOINIT, NAME = N'complex-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, STATS = 10 GOSee possible answers