How Far are You Willing To Go To Get Something?
There are important things in life and in our career, how far are you willing to go to get them?
2017-10-30
116 reads
There are important things in life and in our career, how far are you willing to go to get them?
2017-10-30
116 reads
It is important to have people that do good work and are good to work with.
2017-10-17
96 reads
2017-09-05
317 reads
Team building isn't easy, but important for people to work together well.
2017-07-11
69 reads
When faced with repetitive tasks how do you go about doing them in a focused timely manner?
2017-05-11
157 reads
It takes a creative mind to come up with new ideas. So how do you do it?
2017-04-21
114 reads
This article explores aspects of a job that help one feel satisfied at work.
2017-04-10
99 reads
This article explores the author's way of making big decisions.
2017-04-04
73 reads
2017-01-05
88 reads
I have seen three common responses to database messes. My favorite is nuclear.
2016-12-06
270 reads
By Steve Jones
It’s Prime Day. A few of my recommendations, since I want to do some...
With Fabric Mirroring, Microsoft is promoting a nice and appealing story for operational reporting...
If you’ve been watching AI roll through the data community and thinking, “this seems...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
Comments posted to this topic are about the item Spending Time in the Office
I have this code on SQL Server 2022. What happens when it runs all at once?
DROP TABLE IF EXISTS dbo.Commission GO CREATE TABLE dbo.Commission (id INT NOT NULL IDENTITY(1,1) CONSTRAINT CommissionPK PRIMARY KEY , salesperson VARCHAR(20) , commission VARCHAR(20) ) GO INSERT dbo.Commission ( salesperson, commission) VALUES ( 'Brian', 12 ), ( 'Brian', 'None' ) GOSee possible answers