Startup articles: launches, insights, stories

Showing 1 - 15 of 16 articles with the tag SQLSERVER

SQL Server Window Functions

Image
Mastering SQL window functions is one of the best ways to level up your data analysis skills. These powerful functions allow you to perform calculations like running totals, rankings, and..
Read more

Sent 251 days ago

Best Methods to Rename a Table in SQL Server

Image
Renaming tables in SQL Server seems simple, but there are quite a few things to keep in mind.Yes, the basic method is using sp_rename:EXEC sp_rename 'Schema.OldName', 'Schema.NewName';But this doesn’t update..
Read more

Sent 250 days ago

How to Create Stored Procedures in SQL Server

Image
A SQL Server database is a complex system comprising many different objects. In addition to tables, it includes views, indexes, functions, stored procedures, triggers, and more. Among these, stored procedures..
Read more

Sent 159 days ago

How to Create Stored Procedures in SQL Server

Image
A SQL Server database is a complex system comprising many different objects. In addition to tables, it includes views, indexes, functions, stored procedures, triggers, and more. Among these, stored procedures..
Read more

Sent 158 days ago

SQL Server Authentication

Image
Microsoft SQL Server, a leading database management system, is critical in many businesses. As a result, users frequently need to connect to SQL Server databases and be authenticated before interacting..
Read more

Sent 155 days ago

Why User-Defined Functions Matter in SQL Server

Image
Developers and DBAs often struggle to balance performance with maintainability when working inside large SQL Server databases. One solution is the user-defined function (UDF), a reusable block of T-SQL logic..
Read more

Sent 83 days ago

SQL Server TRANSLATE Function in Action

Image
SQL TRANSLATE captures a key principle in modern SQL development: do more with less code. As string manipulation becomes a routine part of data cleaning, formatting, and validation, relying on..
Read more

Sent 33 days ago