SQL SERVER : How to List All Email Subscription configured in SSRS ?
Often I used to get request from my business managers to get a list of all subscriptions configured in SSRS...
2012-09-27
14,600 reads
Often I used to get request from my business managers to get a list of all subscriptions configured in SSRS...
2012-09-27
14,600 reads
In the last three parts, we have discussed about different queries that can be used to list the current state...
2012-09-26
1,737 reads
In the last post, we have discussed the script to list the sessions which are waiting for resource or currently...
2012-09-24
1,155 reads
When you work as DBA, many people will approach you with a complaint like "Application is taking ages to load...
2012-09-18
1,396 reads
Till now, we do not have any third party tool to monitor the SQL server, but we have implemented many custom...
2012-09-17
4,955 reads
Over clause can be used in association with aggregate function and ranking function. The over clause determine the partitioning and...
2012-09-17 (first published: 2012-09-10)
10,438 reads
It is common scenario that, we might need to extract the data from the SQL server based on some pattern....
2012-09-13
11,668 reads
We know that SQL server stores the data in 8 KB pages. An extent is made up of 8 physically contiguous...
2012-09-12
26,559 reads
Couple of days back, one of my colleague came to me asking for help. He is inserting multiple record from a...
2012-09-09
1,491 reads
In our last post, we have gone through the data page structure and we have noticed that there is an...
2012-08-22
7,213 reads
By Steve Jones
This value is something that I still hear today: our best work is done...
By gbargsley
Have you ever received the dreaded error from SQL Server that the TempDB log...
By Chris Yates
Artificial intelligence is no longer a distant concept. It is here, embedded in the...
Comments posted to this topic are about the item Planning for tomorrow, today -...
We have a BI-application that connects to input tables on a SQL Server 2022...
At work we've been getting better at writing what's known as GitHub Actions (workflows,...
I try to run this code on SQL Server 2022. All the objects exist in the database.
CREATE OR ALTER VIEW OrderShipping AS SELECT cl.CityNameID, cl.CityName, o.OrderID, o.Customer, o.OrderDate, o.CustomerID, o.cityId FROM dbo.CityList AS cl INNER JOIN dbo.[Order] AS o ON o.cityId = cl.CityNameID GO CREATE OR ALTER FUNCTION GetShipCityForOrder ( @OrderID INT ) RETURNS VARCHAR(50) WITH SCHEMABINDING AS BEGIN DECLARE @city VARCHAR(50); SELECT @city = os.CityName FROM dbo.OrderShipping AS os WHERE os.OrderID = @OrderID; RETURN @city; END; goWhat is the result? See possible answers