2010-06-18
269 reads
2010-06-18
269 reads
Today we have a guest editorial from Andy Warren that looks at the value of experience.
2010-06-17
212 reads
The need to archive data is becoming more and more important as data sizes grow. However when you choose to archive data, you might need to reconsider how your DR plan is structured.
2010-06-16
249 reads
A recent headline that Google is dumping Windows because of security issues sounds like FUD to Steve Jones.
2010-06-15
234 reads
Microsoft have been cooking up something for Database Developers in Visual Studio 2010, and Phil Factor has decided it's high time he looked into it. It's not as odd as it sounds, and is actually rather promising, as Phil discovers.
2010-06-14
374 reads
Will computers become better at finding context in situations and environments? Steve Jones comments.
2010-06-14
93 reads
A guest editorial from Andy Warren looks at a bad database design he recently ran across.
2010-06-11
1,304 reads
The MVP award is coveted by many people and there are constant questions about how to get it. Is it worth it? Steve Jones talks about that today.
2010-06-09
310 reads
2010-06-08
92 reads
This week Database Weekly has a lot of performance related posts and Steve Jones notes that those are not of much use unless you know you really do have a performance problem.
2010-06-07
168 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...
hi , a new user wants to be able to add sql agent jobs...
Comments posted to this topic are about the item SQL Server Enum Implementation: A...
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