Archive for the ‘SQL Server’ Category

Microsoft SQL Server 2019 – the future of big data

Donnerstag, Oktober 18th, 2018

Microsoft SQL Server – Best Practices Guide for VMware vSphere

Mittwoch, September 12th, 2018

vmware_logo.jpg   Microsoft SQL Server – Best Practices Guide for VMware vSphere

Microsoft SQL Server 2017 on Linux for Docker Engine – start your instance quickly

Dienstag, Juli 10th, 2018

Official images for Microsoft SQL Server 2017 on Linux for Docker Engine – how to use this image

Microsoft SQL Server 2016 – licensing model

Samstag, Juni 9th, 2018

Microsoft SQL Server – Licensing in a VMware Cloud on AWS Environment

Samstag, Juni 9th, 2018

Microsoft_logo   Licensing Microsoft SQL Server in a VMware Cloud on AWS Environment

Microsoft SQL Server Reporting Services (SSRS) – damit können Befehle an den Berichtsserver über eine URL-Anforderung gesendet werden

Samstag, Dezember 31st, 2016

mswindows_logo.jpgMicrosoft SQL Server Reporting Services (SSRS) – hier können URLs für den Zugriff auf den Report Server-Webdienst und das Webportal verwendet werden

Example: http://Server/ReportServer/Pages/ReportViewer.aspx?someReport&dFrom=01/01/2016&dTo=12/31/2016&rs%3AFormat=XML

Microsoft SQL Server 2016 – für Oracle Kunden kostenlos

Donnerstag, Juni 2nd, 2016

Microsoft_logo   Microsoft SQL Server 2016 – wenn Sie Ihre Oracle Datenbanken zu SQL Server 2016 migrieren erhalten Sie die notwendigen SQL Server Lizenzen dazu kostenlos nur ein Microsoft Software Assurance Abonnement ist erforderlich

MicrosoftSQL_01

Microsoft SQL Server on Linux – get an early look

Dienstag, März 8th, 2016

LinuxSQLlserver_01

Introducing Microsoft SQL Server 2014 – Free ebook

Samstag, Juli 12th, 2014

IntroducingSQLServer2014forITProfessionals_01

Microsoft SQL Server 2014 Express – unterstützt 1 physikalischen Prozessor, 1 GB Arbeitsspeicher und 10 GB Datenspeicher

Montag, Juni 30th, 2014

mswindows_logo.jpg   Microsoft SQL Server 2014 Express ist ein leistungsfähiges und zuverlässiges kostenlose System zur Datenverwaltung, das eine funktionsreiche und zuverlässige Datenspeicherung für schlanke Websites und Desktopanwendungen bietet

MS_SQLServer2014_01

Microsoft SQL Server 2012 Service Pack 2 (SP2) – released

Donnerstag, Juni 19th, 2014

Microsoft SQL Server 2014 – will be generally available on April 1

Donnerstag, März 20th, 2014

Microsoft SQL Server 2008/2012 – SQL agent DCOM errors Event ID 10016

Mittwoch, März 19th, 2014

mswindows_logo.jpg   Here is the work around to resolve this error

Click Start -> Run -> dcomcnfg
Component services, computers, my computer,
DCOM config, find the MSDTSServer100
Properties
Security
Launch and Activate permissions – edit
Add the local SQL AgentUser group and enable local launch and Local activation

MicrosoftSQL_01

Microsoft SQL Server – sample script illustrates how to check index fragmentation of a specified database

Samstag, Oktober 19th, 2013

mswindows_logo.jpg   This script can be used for checking index fragmentation percentage of index tables in SQL Server databases

SELECT b.name, ROUND(ps.avg_fragmentation_in_percent,0)
FROM sys.dm_db_index_physical_stats (DB_ID(), NULL, NULL, NULL, NULL) AS ps INNER JOIN sys.indexes AS b ON ps.OBJECT_ID = b.OBJECT_ID AND ps.index_id = b.index_id
WHERE ps.database_id = DB_ID() AND ps.avg_fragmentation_in_percent > 10 AND ps.index_id > 0 AND ps.page_count > 10 * 1024 / 8
ORDER BY b.name

MS_SQL_Index_00

Microsoft SQL Server 2008 R2 – creating a System Maintenance Plan

Dienstag, Oktober 1st, 2013

mswindows_logo.jpg   Microsoft SQL Server 2008 R2 System Maintenance Plan

MaintenancePlan_01