TechEd Online
I'm glad I'm not this slow, or maybe it's timed for the SQL Server release, but my TechEd Online panel,...
2008-08-15
812 reads
I'm glad I'm not this slow, or maybe it's timed for the SQL Server release, but my TechEd Online panel,...
2008-08-15
812 reads
Like a lot of folks my age (in their 30s), I grew up on comics, both comic strips in the...
2008-08-14
773 reads
Part of running a businness is deciding when and where to spend your hard earned cash. It's interesting to look...
2008-08-14
525 reads
2008-08-13
1,088 reads
SSIS access permissions are managed via Component Services. It is the DCOM object named MSDTSServer. Here are the steps to...
2008-08-13
45,908 reads
The following events are for August 21, 2008, in downtown Columbia, SC.
Morning - Momentum: IT ExecsMorning - TechNet: Vista, PowerShell, Group PolicyAfternoon...
2008-08-13
2,398 reads
Recently I needed to make a call and the only number I had was a mnemonic one. I get why...
2008-08-13
1,899 reads
With all the options we have for viewing query plans I still prefer the graphical view. Combined with tooltips and...
2008-08-12
525 reads
I had to install the RTM version of SQL Server 2008 a few days ago since I'm tech reviewing a...
2008-08-12
740 reads
My friend Jonas Stawski just sent me a note about the upcoming Code Camp in Argentina on October 24, 2008....
2008-08-11
602 reads
By Steve Jones
I was listening to the radio the other day and the hosts were discussing...
By Steve Jones
We’re a week late, once again my fault. I was still coming out of...
By Steve Jones
I ran across this article recently (https://www.gatesnotes.com/meet-bill/source-code/reader/microsoft-original-source-code) and it has a great opening piece...
Marketing a book on Amazon really comes down to combining smart optimization with consistent...
Comments posted to this topic are about the item Learning From Breakage
Comments posted to this topic are about the item Python in Action to Auto-Generate...
I have this table in my SQL Server 2022 database:
CREATE TABLE [dbo].[CityList] ( [CityNameID] [int] NOT NULL IDENTITY(1, 1), [CityName] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ) ON [PRIMARY] GOI decide to add two new columns for the StateProvince and Country. What code should I use? See possible answers