2014-12-10
2,211 reads
2014-12-10
2,211 reads
2014-12-08
1,833 reads
2014-12-05
1,965 reads
2014-12-03
2,077 reads
2014-11-27
2,265 reads
2014-11-26
2,087 reads
2014-11-21
2,035 reads
It is easy to import Excel data into database tables via TSQL, using OLEDB, either by the OPENROWSET function or linking to the spreadsheet as a server. The problem is that there are certain things that aren't obvious that you need to know about.
2014-11-21
11,773 reads
2014-11-20
2,214 reads
2014-11-12
2,428 reads
By DataOnWheels
Two years ago, two things happened within a few days of each other. I...
By gbargsley
This is it. The final chapter of PowerShell Strikes Back. Over the past four...
By Arun Sirpal
Claude is more than a chat window. The desktop experience includes structured workspaces, generated...
Comments posted to this topic are about the item Unraveling the Mysteries of the...
Comments posted to this topic are about the item QUOTENAME Behavior
Good Morning. I have a T-SQL Script which has been developed to execute a...
I use QUOTENAME() like this in code?
DECLARE @s VARCHAR(20) = 'Steve Jones' SELECT QUOTENAME(@s, '>')What is returned? See possible answers