Running SSIS 32-bit drivers or tasks on a 64 bit machine
This is an answer to a forum question on www.bidn.com
Running SSIS on a 64-bit machine has several caveat that developers...
2009-12-11
4,750 reads
This is an answer to a forum question on www.bidn.com
Running SSIS on a 64-bit machine has several caveat that developers...
2009-12-11
4,750 reads
Assuming no major problems at work, I’m heading to the South side of town the afternoon of Dec 14, 2009...
2009-12-11
387 reads
Often when designing a report you may find a need to concatenate values in an expression. For example, you want...
2009-12-11
1,389 reads
With the explosion of Netbooks, it has become important to find new ways to load operating systems. I recently picked...
2009-12-11
318 reads
I was scrolling through my professional email as my wife drove me in to work (my car is being looked...
2009-12-11
660 reads
I continue to read biographies without a real direction, stumbling across an interesting event in one and following that to...
2009-12-10
319 reads
I'm having a day off tomorrow, got some nice things planned including a trip to the beach with the puppies....
2009-12-10
488 reads
"... but you won't tell me how to fix it." I remember that quote coming out of my mouth when I was...
2009-12-10
794 reads
When SQL Server 2005 was released Microsoft made a major change to the client tools provided with SQL Server, moving...
2009-12-10
1,775 reads
Today, on SQLServerCentral.com, SSIS Package Credentials, is the featured article on the site.
I originally drafted this article as a blog post, and...
2009-12-10
692 reads
By Steve Jones
I wrote about learning today for the editorial: I Can’t Make You Learn. I...
By ReviewMyDB
Fabric has CI/CD built in, but if you've tried to use it for database...
By Steve Jones
attriage – n. the state of having lost all control over how you feel...
WA:08218154393 Jl. Brawijaya No.8, Pocanan, Kec. Kota, Kota Kediri, Jawa Timur 64123
WA:08218154393 Jl. Jenderal Basuki Rahmat No.70-74, Klojen, Kec. Klojen, Kota Malang, Jawa Timur 65111
Comments posted to this topic are about the item SSRS Reminded Me of the...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37 4 NULLWhat is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 4;See possible answers