
Enable CLR on SQL Server
Learn how to enable .NET CLR on SQL Server. Continue reading Enable CLR on SQL Server
Browsing Category
SQL and SQL Server database topics. Includes design, issue resolution and tips.
Learn how to enable .NET CLR on SQL Server. Continue reading Enable CLR on SQL Server
Earlier this year, I wrote about Remote Desktop not returning to fullscreen after minimization in Windows 7. The solution is to use Control-Alt-Break to bring the remote desktop window to full screen. And life was grand. I noticed some comments that people had Laptops where their keyboard did not have a Break key.
Continue reading “Remote Desktop won’t go back to Full Screen Part 2”
Download my slides and source code from my SQL Saturday 97 presentation. Continue reading SQL Saturday 97 Slides and Code – EXCEPT, INTERSECT, APPLY
Incorrect Syntax near go. We’ve all gotten this error before, but why does this happen? Watch a video explaining why you cannot use GO inside of sp_executesql Continue reading Incorrect Syntax Near go revisited
Learn where SQL Server Profiler saves your Templates. Continue reading Find your SQL Server Profiler Template Path
Learn how to add a date printed and a page count in the footer of your SSRS report. Even if you have errors with Globals!OverallTotalPages. Continue reading Display a Page Count in SSRS
We are all familiar with seeing our data in a vertical format from SSMS. Here is a sample:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
SELECT * FROM #EmployeeJobs Employee_ID Job_id 100 500 100 501 100 502 100 503 100 504 191 501 191 502 191 503 191 505 188 503 188 504 |
But what if you, or your customer want’s the data horizontally? That is easy enough with a CTE. Continue reading “Display results Horizontally in SQL Server”