Shrink Database Log Files One by One
Learn how you can shrink your transaction log files serially, one by one.
2023-03-31
4,953 reads
Learn how you can shrink your transaction log files serially, one by one.
2023-03-31
4,953 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,889 reads
2010-09-30
2,933 reads
2010-09-06
4,050 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,329 reads
This artcle by new author Manie Verster examines the use of the PATINDEX function in T-SQL.
2008-09-11
10,442 reads
By James Serra
I remember a meeting where a client’s CEO leaned in and asked me, “So,...
By Brian Kelley
If you want to learn better, pause more in your learning to intentionally review.
By John
If you’ve used Azure SQL Managed Instance General Purpose, you know the drill: to...
Hello team Can anyone share popular azure SQL DBA certification exam code? and your...
Comments posted to this topic are about the item Faster Data Engineering with Python...
Comments posted to this topic are about the item Which Result II
I have this code in SQL Server 2022:
CREATE SCHEMA etl;
GO
CREATE TABLE etl.product
(
ProductID INT,
ProductName VARCHAR(100)
);
GO
INSERT etl.product
VALUES
(2, 'Bee AI Wearable');
GO
CREATE TABLE dbo.product
(
ProductID INT,
ProductName VARCHAR(100)
);
GO
INSERT dbo.product
VALUES
(1, 'Spiral College-ruled Notebook');
GO
CREATE OR ALTER PROCEDURE etl.GettheProduct
AS
BEGIN
exec('SELECT ProductName FROM product;')
END;
GO
When I execute this code as a user whose default schema is dbo and has rights to the tables and proc, what is returned? See possible answers