Shrink Database Log Files One by One
Learn how you can shrink your transaction log files serially, one by one.
2023-03-31
5,236 reads
Learn how you can shrink your transaction log files serially, one by one.
2023-03-31
5,236 reads
Read when you search for help on the internet. You might miss a very important part of what you must do.
2013-06-10
4,894 reads
2010-09-30
2,936 reads
2010-09-06
4,052 reads
I had a request from a client who prints a lot of cheques each month and there control over the cheques went a bit haywire. The requested me to create some controls in their system to make sure that the cheques are use in cheque number sequence.
2009-01-20
1,125 reads
This article talks about the sharing of knowledge in forums such as SQLServerCentral.
2008-11-25
3,332 reads
This artcle by new author Manie Verster examines the use of the PATINDEX function in T-SQL.
2008-09-11
10,472 reads
By HeyMo0sh
After working deep in cloud operations, I’ve learned that FinOps isn’t really about dashboards...
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
By Steve Jones
This month I’m thrilled that Steve Hughes is hosting. I’ve read this Data on...
Comments posted to this topic are about the item Creating a JSON Document I
Comments posted to this topic are about the item Who is Irresponsible?
Comments posted to this topic are about the item Designing Database Changes Before Deployment:...
I want to create a JSON document that contains data from this table:
TeamID TeamName City YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933If I run this code, what is returned?
SELECT json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers