Using the Sort Transform - SQL School Video
This SQL School video shows just how you can sort the data in your SSIS packages.
2008-11-25
3,298 reads
This SQL School video shows just how you can sort the data in your SSIS packages.
2008-11-25
3,298 reads
Script components greatly enhance the flexibility of your SSIS packages. MVP Brian Knight shows how you can use this in your transformations.
2008-11-20
4,064 reads
In SQL Server 2008, we have a new way of enforcing rules on our servers. This video has MVP Brian Knight showing us how to create a basic policy in Policy Based Management.
2008-11-18
2,764 reads
In this video, MVP Brian Knight shows how you can use SSIS to work with files on your drive: renaming them, moving them, and more.
2008-11-13
4,332 reads
Maintaining your database server is something every DBA or developer needs to do. This video shows how to setup a basic maintenance plan.
2008-11-11
6,272 reads
Integration Services is a great system for performing ETL operations between databases. In this video we show how you can use Data Viewers to determine if you are correctly transforming data.
2008-11-06
2,067 reads
MVP Brian Knight brings us a look at how you can easily debug your Integration Services packages.
2008-11-04
4,834 reads
This edition of SQL Server examines the various options available in Integration Services configuration files.
2008-10-30
5,305 reads
This SQL School video will show you how to use Management Studio to restore a database in SQL Server 2005.
2008-10-28
3,951 reads
In this SQL School video, MVP Brian Knight dives into the Execute SQL task in Integration Services. You will learn how to add parameters to this task to customize its behavior.
2008-10-23
3,926 reads
By Steve Jones
With the AI push being everywhere, Redgate is no exception. We’ve been getting requests,...
By Steve Jones
fawtle – n. a weird little flaw built into your partner that somehow only...
AWS recently added support for Post-Quantum Key Exchange for TLS in Application Load Balancer...
Comments posted to this topic are about the item Where Your Value Separates You...
Comments posted to this topic are about the item Fixing the Error
Comments posted to this topic are about the item T-SQL in SQL Server 2025:...
On SQL Server 2025, I have a database that has this collation: SQL_Latin1_General_CP1_CI_AS. I decide I want to run this code:
SELECT UNISTR('*3041*308A*304C*3068 and good night', '*') AS 'A Classic';
I get this error:Msg 9844, Level 16, State 4, Line 24 The char/varchar input type uses an unsupported collation. Only a UTF8 collation is supported with char/varchar input type in UNISTR function.What is the easiest way to fix this error? See possible answers