Implementing Execution Log Reports on 32-bit SQL Server 2008 R2
This article covers how to implement the SQL Server 2008 Execution Log DB and package on SQL Server 2008 R2
2010-11-24
4,645 reads
This article covers how to implement the SQL Server 2008 Execution Log DB and package on SQL Server 2008 R2
2010-11-24
4,645 reads
SQL Server 2008 R2 Data-Tier Applications make database development, deployment and management much easier. When you create and build a Data Tier Application, it creates a single, self-contained unit of deployment called a DAC package. Arshad Ali shows you how to deploy the created DAC package and discusses the different methods of deployment.
2010-11-24
2,616 reads
My client wants to standardize address information for existing and future addresses collected for their customers, particularly the street suffixes. The application used to enter and collect address information has the street suffix separated from the address field, but it is a textbox instead of a drop down list therefore things are not standardized. I know there are some options out there to standarize data, but they would like a less expensive alternative. Are there any functions in SQL Server that I can use to standardized data?
2010-11-23
5,296 reads
Recently when I created a SQL Server Agent job to execute a SSIS package, it failed with the message "Non-SysAdmins have been denied permission to run DTS Execution job steps without a proxy account.". What is this exception about? What causes it and how do I resolve it?
2010-11-22
3,971 reads
Continuing on with his testing series for T-SQL code, MVP Andy Leonard looks at deployment here.
2010-11-19 (first published: 2009-07-15)
8,919 reads
One of the most distinguishing characteristics of Control Flow Script Task available in SQL Server 2008 Integration Services is its flexibility. This article demonstrates some of these capabilities by describing an approach that employs the Script Task to query data residing in an Active Directory domain database.
2010-11-19
2,759 reads
MVP and author of our Stairway Series on SSIS, Andy Leonard, is holding an SSIS class this December in northern Virginia. If you are interested in top notch SSIS training, read on.
2010-11-19 (first published: 2010-11-02)
5,610 reads
One thing that stuck out for me at the PASS Summit was the changes announced for the SQL Server Microsoft...
2010-11-19
2,168 reads
This article attempts to show a practical scenario on improving DB design and performance through row density and compression in Microsoft SQL Server 2008.
2010-11-18
9,222 reads
MVP Allen White talked about how Powershell can be used to script out your database and put it in Source Control, and how SQL Source Control from
2010-11-18
516 reads
PlanTrace: Stop Reading Redshift EXPLAIN Plans. Start Seeing Them Introducing PlanTrace — a free, browser-based...
By Steve Jones
I went to sleep while reading a Kindle book on my phone. I know...
A conversation with Jan Laš, CIO at HOPI, about what deploying a data agent...
By Cakhia TV Bóng Đá Trực Tuyến
Telp/WA.0821°3111°179 Ruko, Jl. Pejaten Mas Raya Jl. Raya Pasar Minggu No.Km.20 No. 98F &...
Abdul Rahman, Jl. H. Rais A. Rachman, RT.003/RW.009, Sungai Jawi, Kec. Pontianak Kota, Kota...
By Cakhia TV Bóng Đá Trực Tuyến
Telp/WA.0821°3111°179 Equity Tower, Ground Floor, Unit D & Lantai 8, Unit E, Jl. Jenderal...
I have this data in a table called dbo.NFLTeams
TeamID TeamName City YearEstablished ------ -------- ---- --------------- 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960 5 49ers San Francisco 1946 6 Broncos Denver 1960 7 Seahawks Seattle 1976 8 Patriots New England 1960If I run this code, how many rows are returned?
SELECT TOP 2
json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers