Understanding SQL Server Full-text Indexing – (Part 2)
Checkout the final part of this two part article series here, in which I discussed how to create full-text index...
2013-09-17
534 reads
Checkout the final part of this two part article series here, in which I discussed how to create full-text index...
2013-09-17
534 reads
Managing changes to environment dependent variables is common and critical in any ETL application, especially during deployment of SSIS packages....
2013-09-17
756 reads
SQL Server allows applications and users to execute full- text search queries against character based data in SQL Server tables....
2013-08-06
932 reads
Checkout the part-2 of my five part article series on Guide to SQL Server Table Indexeshere, in which you will learn...
2013-08-06
525 reads
Checkout the part-3 of my five part article series on Guide to SQL Server Table Indexeshere, in which you will learn...
2013-08-06
550 reads
Creating SQL Server upgrade paths from one version to another is a task that every database administrator is eager to...
2013-08-06
753 reads
Normalization, which is the key part of the OLTP databases logical design process, is a design requirement for OLTP databases....
2013-08-06
548 reads
Scalability is the ability of a system to support an increased workload by adding incremental system resources without fundamentally changing...
2013-08-06
548 reads
One of the most important tasks for every database administrator (DBA) is to ensure that query times are consistent with...
2013-07-15
1,377 reads
SQL Server is a repository of sensitive information for organizations, and that is why it is important to ensure that...
2013-07-15
3,413 reads
Do you know if your SQL Server is really running at its best? To...
You can find the slides of my session on the €100 DWH in Azure...
By Steve Jones
This value is something that I still hear today: our best work is done...
Hi everyone I am writing an SP where there is logic inside the SP...
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...
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