RADACAD Blog

Latest Power BI and AI articles from RADACAD team

T-SQL Split Function : Split Field By a Delimiter

Hi, Today one of my colleagues in company faced a problem, He wants to split a text field by a delimiter character. This motivate me to write a Split function for my own use and put it here for help others. Suppose that our Primary Data is like this image and delimited by single slash Read more about T-SQL Split Function : Split Field By a Delimiter[…]

My Submitted Sessions for SqlBits 10

Dear folks, I’ve submitted two sessions in SqlBits 10, with these topics: SSIS Programming; SSIS Can Do Everything! Boost SSIS power with XML Topics are in one hour sessions details of each topic are : SSIS Programming; SSIS Can Do Everything! Level: 400 Description: SSIS is a RAD tool and many SSIS Developers only need Read more about My Submitted Sessions for SqlBits 10[…]

Regular Expression in SSIS

Regular Expressions are very useful expressions for text processing there are many usages like validation a text against a pattern or find appropriate parts of text with defined patterns which can be solved with Regular Expressions. To find out more about Regular Expressions read here. Today I find a simple case of such things in Read more about Regular Expression in SSIS[…]

My Contribution in SQL Server MVP Deep Dive Volume 2

Finally the SQL Server MVP Deep Dive Volume 2 going to be available soon . This book is all about SQL Server, but not an ordinal book about SQL Server from begin to end or on special aspect of SQL Server. This book covers 5 major topics of SQL Server ( Architecture and Design, Administration, Read more about My Contribution in SQL Server MVP Deep Dive Volume 2[…]

T-SQL Gregorian To Persian Converter

There are lots of times which you need a "Gregorian to Persian ( Shamsi ) Converter" in t-sql. below code will convert gregorian date string for example 2011-08-25 to persian or shamsi date string for example 1390-06-03 . just note this code will work on sql server 2005 or above because I used the Floor Read more about T-SQL Gregorian To Persian Converter[…]