Dear Vendor: Keep My Information Secure
Dear vendor:
Dear Vendor: Keep My Information Secure
If you’re reading this, we have done business together, either directly or indirectly. You...
2015-05-08 (first published: 2015-04-27)
5,908 reads
Dear vendor:
Dear Vendor: Keep My Information Secure
If you’re reading this, we have done business together, either directly or indirectly. You...
2015-05-08 (first published: 2015-04-27)
5,908 reads
Object variables in SSIS are incredibly versatile, allowing the storage of almost any type of data (even .NET objects). In...
2015-04-30 (first published: 2015-04-20)
12,136 reads
In my most recent post in this series, I talked about how to use the SSIS object variable as an...
2015-04-27
4,526 reads
Everybody wants to be liked, to some extent. Being disliked by others feels like a deficiency, a shortcoming in oneself...
2015-04-24
561 reads
Some time back I wrote about how to use the script component to parse out ragged data files in SSIS....
2015-04-22 (first published: 2015-04-13)
5,991 reads
“He’s a screw-up. Always trying things that don’t work.”
I’ll be honest: I used to be afraid of being the person...
2015-04-17 (first published: 2015-04-09)
5,685 reads
The answer: It Depends.
One of the more common problems I encounter when managing data quality, especially in an ETL process,...
2015-04-15 (first published: 2015-04-06)
7,561 reads
This week, PASS announced the Best of PASS Summit 2014, a collection of the 10 highest-rated sessions from last fall’s...
2015-04-13 (first published: 2015-04-04)
5,941 reads
When I think about Baltimore, I think about Edgar Allan Poe. Baltimore was Poe’s one-time home, and in fact there...
2015-04-10
613 reads
Yesterday I read an article entitled “Why I Don’t Want to Have Coffee With You”, in which the author writes...
2015-04-10 (first published: 2015-03-31)
7,880 reads
One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...
By Kevin3NF
Flexibility and Scale at the Database Level When SQL Server 2012 introduced Availability Groups...
Setting page visibility and the active page are often overlooked last steps when publishing...
i have subscription of github copilot which i can access in vs 2022 comunity...
Comments posted to this topic are about the item Password Guidance
Comments posted to this topic are about the item Using table variables in T-SQL
What happens if you run the following code in SQL Server 2022+?
declare @t1 table (id int); insert into @t1 (id) values (NULL), (1), (2), (3); select count(*) from @t1 where @t1.id is distinct from NULL;See possible answers