Limiting Table Access for Reporting Part 1
End users may have a need to do some form of reporting of data from source systems. Opening up the...
2010-07-29
457 reads
End users may have a need to do some form of reporting of data from source systems. Opening up the...
2010-07-29
457 reads
Blog Title: Limiting Table Access for Reporting Part 2
In the first blog post of this series, I showed you how...
2010-07-29
567 reads
How many of you keep falling for this one…You open up Report Manager for a user that you know you...
2010-07-29
1,472 reads
In this quick blog, I want to show you one way of how to find out what indexes you have on a table...
2010-07-29
482 reads
The 6th Annual Jacksonville Code Camp is coming up fast. There are tons of great presenters slated to be here...
2010-07-26
378 reads
SQL Saturday #40 is quickly approaching and many are gearing up for the trip down there to hear some awesome...
2010-07-20
479 reads
Recently, I have begun my quest of mastering SSAS. I realize that it may take time and I am more...
2010-07-19
502 reads
Creating subscriptions in SQL Server Reporting Services is a great way to distribute files to end users. If it has...
2010-07-19
16,379 reads
If you’re planning on rolling out Report Builder to end users, you may want to download the stand alone installation...
2010-07-18
574 reads
Recently, I have been given the opportunity to work with a company who wanted to explore the capabilities of Report...
2010-07-18
358 reads
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...
By Steve Jones
I’m in the UK today, having arrived this morning in London. Hopefully, by this...
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...
Comments posted to this topic are about the item Adding and Dropping Columns I
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