Amazon RDs and the PaaS formerly known as Azure
Phil Factor welcomes SQL Server support by Amazon RDS, as an alternative to having Microsoft as service provider as well as software provider, via the PaaS formerly known as Azure.
2012-05-14
265 reads
Phil Factor welcomes SQL Server support by Amazon RDS, as an alternative to having Microsoft as service provider as well as software provider, via the PaaS formerly known as Azure.
2012-05-14
265 reads
Can one generalize from agile techniques of application testing to database testing. Phil isn't entirely convinced that it can do any more that remove the distracting trivial bugs in order to allow testers to concentrate on the important issues
2011-05-30
208 reads
Phil Factor speculates on the damage caused to Cloud providers by the Amazon and Sony Outages.
2011-05-09
175 reads
In which Phil Factor attempts to justify his iPhones and iPod Touches as a business expense.
2010-01-04
307 reads
Earlier this week, Jeff Atwood suffered the sort of misfortune we all dread: hard drive failure and no backups. Tony Davis discusses what can be learned from this in terms of the chain of responsibility for an organization's data.
2009-12-21
150 reads
This week Mobile BI is on the radar at Microsoft. Steve Jones comments on what this might mean for the database people in the future.
2009-08-31
151 reads
The use of non-relational databases is a fascinating topic but they will remain special-purpose and are not competing with SQL-based relational databases.
2009-07-13
878 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
Many years ago, before I joined Oracle, I was working on a major modernisation...
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
WhatsApp: 0817839777 Jl. Jend. Ahmad Yani No.91, Magersari, Panjunan, Kec. Kota Kudus, Kabupaten Kudus,...
WhatsApp: 0817839777 Jl. Pemuda No.90-92, Kembangsari, Kec. Semarang Tengah, Kota Semarang, Jawa Tengah 50133
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37What is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 3;See possible answers