KB5016884 – Kumulatives Update 31 für SQL Server 2017
Veröffentlichungsdatum: 20. September 2022
Version: 14.0.3456.2
Notiz
Kumulatives Update 31 ist das letzte kumulative Update für Microsoft SQL Server 2017. SQL Server 2017 wird nach dem 11. Oktober 2022 zur erweiterten Unterstützung umgestellt.
Übersicht
In diesem Artikel wird das kumulative Updatepaket 31 (CU31) für Microsoft SQL Server 2017 beschrieben. Dieses Update enthält 19 Fixes , die nach der Veröffentlichung des kumulativen SQL Server 2017-Updates 30 ausgegeben wurden und Komponenten in den folgenden Builds aktualisiert wurden:
- SQL Server – Produktversion: 14.0.3456.2, Dateiversion: 2017.140.3456.2
- Analysis Services - Produktversion: 14.0.249.94, Dateiversion: 2017.140.249.94
Bekannte Probleme in diesem Update
Angenommen, eine tabelle, die von der Replikation verwendet wird, verwendet eine Spalte, die die NEWSEQUENTIALID
Funktion im Primärschlüssel verwendet. Wenn Sie versuchen, die Momentaufnahme beim Abonnenten anzuwenden, tritt ein Fehler auf. Hier sind die Befehle, die versucht wurden, und Fehlermeldungen:
- Befehl versucht:
create procedure [sp_MSupd_PersonAddress]
@c1 int = NULL,
@c2 nvarchar(60) = NULL,
@c3 nvarchar(60) = NULL,
@c4 nvarchar(30) = NULL,
@c5 int = NULL,
@c6 nvarchar(15) = NULL,
@c7 [geography] = NULL,
@c8 uniqueidentifier = NULL,
@c9 datetime = NULL,
@pkc1 uniqueidentifier = NULL,
@bitmap binary(2)
as
begin
declare @primarykey_text nvarchar(100) = ''
if (substring(@bitmap,1,1) & 128 = 128)
begin
if @pkc1 is null
set @pkc1 = (newsequentialid())
update [Person].[
(Transaction sequence number: 0x0000002400000F30005500000000, Command ID: 7)
- Fehlermeldungen:
Die integrierte Funktion 'newsequentialid()' kann nur in einem DEFAULT-Ausdruck für eine Spalte vom Typ 'uniqueidentifier' in einer CREATE TABLE- oder einer ALTER TABLE-Anweisung verwendet werden. Sie kann nicht mit anderen Operatoren zu einem komplexen Skalarausdruck kombiniert werden. (Quelle: MSSQLServer, Fehlernummer: 302)
Hilfe erhalten: http://help/302
Notiz
Die einzige Möglichkeit, dieses Problem zu beheben, besteht darin, die Primärschlüsselspalte in die NEWID
Funktion zu ändern, während Sie die Momentaufnahme erstellen und sie dann wieder auf die NEWSEQUENTIALID
Funktion zurücksetzen, nachdem die Momentaufnahme angewendet wurde. Sie können den folgenden Befehl ausführen:
ALTER TABLE [Person].[Address] DROP CONSTRAINT [PK_Address_rowguid]
GO
ALTER TABLE [Person].[Address] ADD CONSTRAINT [PK_Address_rowguid] DEFAULT (NEWID()) FOR [rowguid]
GO
ALTER TABLE [Person].[Address] DROP CONSTRAINT [PK_Address_rowguid]
GO
ALTER TABLE [Person].[Address] ADD CONSTRAINT [PK_Address_rowguid] DEFAULT (NEWSEQUENTIALID()) FOR [rowguid]
GO
Verbesserungen und Korrekturen, die in diesem Update enthalten sind
Eine herunterladbare Excel-Arbeitsmappe, die eine Zusammenfassungsliste mit Builds zusammen mit ihrem aktuellen Supportlebenszyklus enthält, ist verfügbar. Die Excel-Datei enthält außerdem detaillierte Fixlisten für SQL Server 2019 und SQL Server 2017. Wählen Sie diese Excel-Datei jetzt herunter.
Notiz
Auf einzelne Einträge in der folgenden Tabelle kann direkt über eine Textmarke verwiesen werden. Wenn Sie eine Fehlerreferenz-ID in der Tabelle auswählen, wird der URL mithilfe des Formats "#NNNNNNNN" ein Lesezeichentag hinzugefügt. Sie können diese URL dann für andere Personen freigeben, damit sie direkt zur gewünschten Lösung in der Tabelle springen können.
Weitere Informationen zu den Fehlern, die in diesem Wartungsupdate enthalten sind, finden Sie in den folgenden Microsoft Knowledge Base-Artikeln.
Fehlerreferenz | Beschreibung | Fixbereich | Komponente | Plattform |
---|---|---|---|---|
14915051 | Behebt die Sicherheitsanfälligkeit in Denial of Service (DoS) für die Newtonsoft-Bibliothek in SQL Server 2017. | Analysis Services | Analysis Services | Windows |
14676488 | Fehler 9003 tritt mit der falschen Protokollsequenznummer (LSN) auf, wenn Sie eine nachfolgende Wiederherstellung durchführen, nachdem Sie die LSN an der VLF-Grenze (Virtual Log File) mithilfe der RESTORE WITH STANDBY Anweisung angegeben haben. Dies ist die Fehlermeldung: Msg 3013, Level 16, State 1, Line <LineNumber > RESTORE DATABASE wird abnormal beendet. Msg 9003, Level 17, State 11, Line LineNumber < >The log scan number (<LogScanNumber>) passed to log scan in database '<DatabaseName>' isn't valid. Dieser Fehler kann auf Datenbeschädigung hinweisen oder dass die Protokolldatei (LDF) nicht mit der Datendatei übereinstimmt (.mdf). Falls dieser Fehler während der Replikation aufgetreten ist, müssen Sie die Veröffentlichung neu erstellen. Andernfalls stellen Sie die Datenbank von einer Sicherung wieder her, falls das Problem zu einem Fehler beim Starten führt. |
SQL Server-Modul | Sicherung Wiederherstellung | Windows |
14924205 | Nicht ertragende Dumps treten häufig auf ColumnStoreAttributeCache::ColumnStoreColumnAttributeNode::GetSegmentById auf. | SQL Server-Modul | Spaltenspeicher | Windows |
14989388 | Die Dateigruppen-IDs der Dateien, die zur Klondatenbank gehören, können falsch sein, wenn die Quelldatenbank Lücken in den Dateigruppen-IDs aufgrund des Entfernens von Dateien oder Dateigruppen aufweist. Wenn Sie versuchen, Daten in die Tabelle einzufügen, die zur falsch generierten Klondatenbank gehört, erhalten Sie eine Fehlermeldung, die der folgenden Meldung ähnelt: Msg 622, Level 16, State 3, Line LineNumber < > Die Dateigruppe "<FileGroupName>" hat keine Dateien zugewiesen. Tabellen, Indizes, Textspalten, ntextspalten und Bildspalten können in dieser Dateigruppe erst aufgefüllt werden, wenn eine Datei hinzugefügt wird. |
SQL Server-Modul | DB-Verwaltung | Windows |
14964725 | Das FILESTREAM-Feature ist nach dem Neustart des Betriebssystems aufgrund von Racebedingungen aus mehreren Instanzen von SQL Server nicht aktiviert. Im Fehlerprotokoll wird die folgende Fehlermeldung angezeigt: Fehler: 5591, Schweregrad: 16, Status: 5. Die FILESTREAM-Funktion ist deaktiviert. |
SQL Server-Modul | FileStream und FileTable | Windows |
14860451 | Die schreibgeschützte Anforderung wechselt weiterhin zum primären Lese-/Schreibzugriffsknoten in einer AlwaysOn-Verfügbarkeitsgruppe, wenn der schreibgeschützte Routinglistenknoten abläuft. | SQL Server-Modul | Hochverfügbarkeit und Notfallwiederherstellung | Alle |
14904061 | Ein Assertionsfehler tritt bei sekundären Replikaten auf, wenn Sie AlwaysOn-Verfügbarkeitsgruppen in Hochlatenznetzwerken in SQL Server 2017 verwenden. Möglicherweise wird dieser Assertionsfehler im Fehlerprotokoll angezeigt: Assertion: Datei: <"e:\\b\\s3\\sources\\sql\\ntdbms\\storeng\\dfs\\trans\\lsnlocmap.cpp">, line=358 Failed Assertion = 'pos - pndx < map-EntryCount>' |
SQL Server-Modul | Hochverfügbarkeit und Notfallwiederherstellung | Alle |
14209349 | Speicheroptimierte tempdb-Metadaten (HkTempDB) verbrauchen arbeitsspeicher unter VARHEAP: Lob Page Allocator. | SQL Server-Modul | In-Memory-OLTP | Windows |
14923181 | Nach der parallelen Indexüberprüfung tritt ein Speicherverlust im Bereichsindex von In-Memory-Tabellen auf. | SQL Server-Modul | In-Memory-OLTP | Alle |
14923920 | Unter "Range Index Heap" in der Speichertabelle mit nicht gruppierten Indizes tritt ein Speicherverlust auf, wenn gleichzeitig Einfügungen vorhanden sind. | SQL Server-Modul | In-Memory-OLTP | Alle |
13766490 | Leistungsprobleme und Deadlocks treten auf SQL Server-Agent in der msdb-Datenbank auf, die über automatisierte Sicherungen verfügt. Darüber hinaus werden die folgenden Fehlermeldungen im SQL Server-Agent-Protokoll angezeigt: DateTime> SQLServer-Fehler:< 1205, Transaktion (Prozess-ID) wurde bei Sperrressourcen mit einem anderen Prozess inaktiviert und wurde als Deadlock-Opfer ausgewählt. Führen Sie die Transaktion erneut aus. <DateTime> Failed to retrieve jobID <> from the server. |
SQL Server-Modul | Verwaltungsdienste | Windows |
15009086 | Eine Zugriffsverletzung kann auftreten, nachdem Sie SQL Server 2017 kumulatives Update 30 (CU30) angewendet haben. Dieses Problem kann auftreten, wenn Sie einen Masseneinfügevorgang ausführen, gefolgt von einer SELECT Anweisung in derselben Transaktion, und das Wiederherstellungsmodell der Datenbank ist entweder einfach oder massenprotokolliert. |
SQL Server-Modul | Methoden für den Zugriff auf gespeicherte Daten | Alle |
14979530 | FIX: Das Installieren von SQL Server-CUs kann IndexOutOfRangeException (KB5017551) auslösen. | SQL-Setup | Patching | Windows |
14976696 | FIX: ParameterRuntimeValue fehlt in der Showplan-XML, wenn Sie den DMV-sys.dm_exec_query_statistics_xml (KB5017788) verwenden. | SQL Server-Modul | Abfrageausführung | Alle |
14876278 | Ein nicht ertragendes Planerabbild tritt in sqldk!SOS_MemoryWorkSpace::Lookup . |
SQL Server-Modul | Abfrageausführung | Alle |
14918513 | FIX: ForceLastGoodPlan berücksichtigt nicht abgebrochene und Timeoutabfragen in Regressionserkennungslogik (KB5008184) | SQL Server-Modul | Abfragespeicher | Alle |
14810743 | FIX: Fehler 20598 nach dem Hinzufügen von Spalten mit Standardeinschränkungen als Teil des Primärschlüssels für eine vorhandene Tabelle und Konfigurieren der Transaktionsreplikation (KB5018231) | SQL Server-Modul | Replikation | Windows |
14914142 | Fehler 208 tritt auf, wenn Sie diesp_changereplicationserverpasswords gespeicherte Prozedur verwenden, um gespeicherte Kennwörter für die von Replikations-Agents verwendete Microsoft SQL Server-Anmeldung zu ändern. Dies ist die Fehlermeldung: Msg 208, Level 16, State 1, Procedure master.sys.sp_MSchangerepltablepasswords, Line <LineNumber> [Batch Start Line 0] Ungültiger Objektname 'MSreplservers'. |
SQL Server-Modul | Replikation | Windows |
14962805 | Hohe CPU-Auslastung tritt auf, wenn Sie die Änderungsnachverfolgung für eine große Anzahl von Tabellen aktivieren und die automatische oder manuelle Bereinigung der Änderungsnachverfolgungstabellen ausführen. | SQL Server-Modul | Replikation | Windows |
Abrufen oder Herunterladen dieses oder des neuesten kumulativen Updatepakets
Abrufen oder Herunterladen des neuesten kumulativen Updatepakets für Windows (empfohlen)
Das folgende Update steht im Microsoft Download Center zur Verfügung:
Wenn die Downloadseite nicht angezeigt wird, wenden Sie sich an den Microsoft-Kundendienst und den Support , um das kumulative Updatepaket zu erhalten.
Abrufen oder Herunterladen dieses kumulativen Updatepakets für Windows aus dem Microsoft Update-Katalog
Notiz
Nachdem zukünftige kumulative Updates für SQL Server 2017 veröffentlicht wurden, können diese und alle vorherigen CUs aus dem Microsoft Update-Katalog heruntergeladen werden. Es wird jedoch empfohlen, immer das neueste kumulative Update zu installieren, das verfügbar ist.
Das folgende Update ist aus dem Microsoft Update-Katalog verfügbar:
Abrufen oder Herunterladen des neuesten kumulativen Updatepakets für Linux
Um SQL Server 2017 unter Linux auf das neueste CU zu aktualisieren, müssen Sie zuerst das kumulative Update-Repository konfiguriert haben. Aktualisieren Sie dann Ihre SQL Server-Pakete mithilfe des entsprechenden plattformspezifischen Updatebefehls.
Installationsanweisungen und direkte Links zu den CU-Paketdownloads finden Sie in den SQL Server 2017-Versionshinweisen.
Dateiinformationen
Dateihashinformationen
Sie können den Download überprüfen, indem Sie den Hash der SQLServer2017-KB5016884-x64.exe Datei über den folgenden Befehl berechnen:
certutil -hashfile SQLServer2017-KB5016884-x64.exe SHA256
Dateiname | SHA256-Hash |
---|---|
SQLServer2017-KB5016884-x64.exe | AE3554BA0A474B4D1A6B2D3BB7F00A4F6308DBE50178FFF67BAA8B21CC74DBC2 |
Informationen zum kumulativen Updatepaket
Die englische Version dieses Pakets enthält die Dateiattribute (oder höhere Dateiattribute), die in der folgenden Tabelle aufgeführt sind. Die Datums- und Uhrzeitangaben für diese Dateien werden in koordinierter Weltzeit (COORDINATED Universal Time, UTC) aufgeführt. Wenn Sie die Dateiinformationen anzeigen, wird sie in die Ortszeit konvertiert. Um den Unterschied zwischen UTC und Ortszeit zu ermitteln, verwenden Sie die Registerkarte "Zeitzone" im Element "Datum und Uhrzeit" in Systemsteuerung.
x64-basierte Versionen
SQL Server 2017 Analysis Services
Dateiname | Dateiversion | Dateigröße | Datum | Zeit | Plattform |
---|---|---|---|---|---|
Asplatformhost.dll | 2017.140.249.94 | 260520 | 2. Sep-22 | 21:50 | x64 |
Microsoft.analysisservices.minterop.dll | 14.0.249.94 | 736672 | 2. Sep-22 | 21:28 | x86 |
Microsoft.analysisservices.server.core.dll | 14.0.249.94 | 1375136 | 2. Sep-22 | 21:50 | x86 |
Microsoft.analysisservices.server.tabular.dll | 14.0.249.94 | 978856 | 2. Sep-22 | 21:50 | x86 |
Microsoft.analysisservices.server.tabular.json.dll | 14.0.249.94 | 582056 | 2. Sep-22 | 21:50 | x86 |
Microsoft.applicationinsights.dll | 2.7.0.13435 | 329872 | 2. Sep-22 | 21:30 | x86 |
Microsoft.data.edm.netfx35.dll | 5.7.0.62516 | 661072 | 2. Sep-22 | 21:28 | x86 |
Microsoft.data.mashup.dll | 2.80.5803.541 | 186232 | 2. Sep-22 | 21:28 | x86 |
Microsoft.data.mashup.oledb.dll | 2.80.5803.541 | 30080 | 2. Sep-22 | 21:28 | x86 |
Microsoft.data.mashup.preview.dll | 2.80.5803.541 | 74832 | 2. Sep-22 | 21:28 | x86 |
Microsoft.data.mashup.providercommon.dll | 2.80.5803.541 | 102264 | 2. Sep-22 | 21:28 | x86 |
Microsoft.data.odata.netfx35.dll | 5.7.0.62516 | 1454672 | 2. Sep-22 | 21:28 | x86 |
Microsoft.data.odata.query.netfx35.dll | 5.7.0.62516 | 181112 | 2. Sep-22 | 21:28 | x86 |
Microsoft.data.sapclient.dll | 1.0.0.25 | 920656 | 2. Sep-22 | 21:28 | x86 |
Microsoft.hostintegration.connectors.dll | 2.80.5803.541 | 5262728 | 2. Sep-22 | 21:28 | x86 |
Microsoft.mashup.container.exe | 2.80.5803.541 | 22392 | 2. Sep-22 | 21:28 | x64 |
Microsoft.mashup.container.netfx40.exe | 2.80.5803.541 | 21880 | 2. Sep-22 | 21:28 | x64 |
Microsoft.mashup.container.netfx45.exe | 2.80.5803.541 | 22096 | 2. Sep-22 | 21:28 | x64 |
Microsoft.mashup.eventsource.dll | 2.80.5803.541 | 149368 | 2. Sep-22 | 21:28 | x86 |
Microsoft.mashup.oauth.dll | 2.80.5803.541 | 78712 | 2. Sep-22 | 21:28 | x86 |
Microsoft.mashup.oledbinterop.dll | 2.80.5803.541 | 192392 | 2. Sep-22 | 21:28 | x64 |
Microsoft.mashup.oledbprovider.dll | 2.80.5803.541 | 59984 | 2. Sep-22 | 21:28 | x86 |
Microsoft.mashup.shims.dll | 2.80.5803.541 | 27512 | 2. Sep-22 | 21:28 | x86 |
Microsoft.mashup.storage.xmlserializers.dll | 1.0.0.0 | 140368 | 2. Sep-22 | 21:28 | x86 |
Microsoft.mashupengine.dll | 2.80.5803.541 | 14271872 | 2. Sep-22 | 21:28 | x86 |
Microsoft.odata.core.netfx35.dll | 6.15.0.0 | 1437568 | 2. Sep-22 | 21:28 | x86 |
Microsoft.odata.edm.netfx35.dll | 6.15.0.0 | 778632 | 2. Sep-22 | 21:28 | x86 |
Microsoft.powerbi.adomdclient.dll | 15.1.27.19 | 1104976 | 2. Sep-22 | 21:28 | x86 |
Microsoft.spatial.netfx35.dll | 6.15.0.0 | 126336 | 2. Sep-22 | 21:28 | x86 |
Msmdctr.dll | 2017.140.249.94 | 34216 | 2. Sep-22 | 21:51 | x64 |
Msmdlocal.dll | 2017.140.249.94 | 40421288 | 2. Sep-22 | 21:48 | x86 |
Msmdlocal.dll | 2017.140.249.94 | 60767160 | 2. Sep-22 | 21:51 | x64 |
Msmdpump.dll | 2017.140.249.94 | 9334184 | 2. Sep-22 | 21:51 | x64 |
Msmdredir.dll | 2017.140.249.94 | 7089568 | 2. Sep-22 | 21:48 | x86 |
Msmdsrv.exe | 2017.140.249.94 | 60669352 | 2. Sep-22 | 21:51 | x64 |
Msmgdsrv.dll | 2017.140.249.94 | 7306144 | 2. Sep-22 | 21:48 | x86 |
Msmgdsrv.dll | 2017.140.249.94 | 9001888 | 2. Sep-22 | 21:51 | x64 |
Msolap.dll | 2017.140.249.94 | 7773624 | 2. Sep-22 | 21:48 | x86 |
Msolap.dll | 2017.140.249.94 | 10257832 | 2. Sep-22 | 21:51 | x64 |
Msolui.dll | 2017.140.249.94 | 281504 | 2. Sep-22 | 21:48 | x86 |
Msolui.dll | 2017.140.249.94 | 305056 | 2. Sep-22 | 21:51 | x64 |
Powerbiextensions.dll | 2.80.5803.541 | 9470032 | 2. Sep-22 | 21:28 | x86 |
Private_odbc32.dll | 10.0.14832.1000 | 728456 | 2. Sep-22 | 21:28 | x64 |
Sql_as_keyfile.dll | 2017.140.3456.2 | 94648 | 2. Sep-22 | 21:50 | x64 |
Sqlboot.dll | 2017.140.3456.2 | 191912 | 2. Sep-22 | 21:51 | x64 |
Sqlceip.exe | 14.0.3456.2 | 269216 | 2. Sep-22 | 21:30 | x86 |
Sqldumper.exe | 2017.140.3456.2 | 139688 | 2. Sep-22 | 21:29 | x64 |
Sqldumper.exe | 2017.140.3456.2 | 117176 | 2. Sep-22 | 21:47 | x86 |
System.spatial.netfx35.dll | 5.7.0.62516 | 117640 | 2. Sep-22 | 21:28 | x86 |
Tmapi.dll | 2017.140.249.94 | 5815712 | 2. Sep-22 | 21:53 | x64 |
Tmcachemgr.dll | 2017.140.249.94 | 4158888 | 2. Sep-22 | 21:53 | x64 |
Tmpersistence.dll | 2017.140.249.94 | 1126312 | 2. Sep-22 | 21:53 | x64 |
Tmtransactions.dll | 2017.140.249.94 | 1637288 | 2. Sep-22 | 21:53 | x64 |
Xe.dll | 2017.140.3456.2 | 667576 | 2. Sep-22 | 21:53 | x64 |
Xmlrw.dll | 2017.140.3456.2 | 251816 | 2. Sep-22 | 21:48 | x86 |
Xmlrw.dll | 2017.140.3456.2 | 299424 | 2. Sep-22 | 21:53 | x64 |
Xmlrwbin.dll | 2017.140.3456.2 | 183712 | 2. Sep-22 | 21:48 | x86 |
Xmlrwbin.dll | 2017.140.3456.2 | 218552 | 2. Sep-22 | 21:53 | x64 |
Xmsrv.dll | 2017.140.249.94 | 33350560 | 2. Sep-22 | 21:48 | x86 |
Xmsrv.dll | 2017.140.249.94 | 25377192 | 2. Sep-22 | 21:53 | x64 |
SQL Server 2017 Database Services Common Core
Dateiname | Dateiversion | Dateigröße | Datum | Zeit | Plattform |
---|---|---|---|---|---|
Batchparser.dll | 2017.140.3456.2 | 154552 | 2. Sep-22 | 21:43 | x86 |
Batchparser.dll | 2017.140.3456.2 | 175016 | 2. Sep-22 | 21:50 | x64 |
Instapi150.dll | 2017.140.3456.2 | 56744 | 2. Sep-22 | 21:48 | x86 |
Instapi150.dll | 2017.140.3456.2 | 66472 | 2. Sep-22 | 21:51 | x64 |
Isacctchange.dll | 2017.140.3456.2 | 23480 | 2. Sep-22 | 21:46 | x86 |
Isacctchange.dll | 2017.140.3456.2 | 25016 | 2. Sep-22 | 21:50 | x64 |
Microsoft.analysisservices.adomdclient.dll | 14.0.249.94 | 1082784 | 2. Sep-22 | 21:47 | x86 |
Microsoft.analysisservices.adomdclient.dll | 14.0.249.94 | 1082784 | 2. Sep-22 | 21:50 | x86 |
Microsoft.analysisservices.core.dll | 14.0.249.94 | 1375648 | 2. Sep-22 | 21:46 | x86 |
Microsoft.analysisservices.xmla.dll | 14.0.249.94 | 735648 | 2. Sep-22 | 21:47 | x86 |
Microsoft.analysisservices.xmla.dll | 14.0.249.94 | 735656 | 2. Sep-22 | 21:50 | x86 |
Microsoft.sqlserver.edition.dll | 14.0.3456.2 | 31672 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.mgdsqldumper.v4x.dll | 2017.140.3456.2 | 72632 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.mgdsqldumper.v4x.dll | 2017.140.3456.2 | 76216 | 2. Sep-22 | 21:51 | x64 |
Microsoft.sqlserver.rmo.dll | 14.0.3456.2 | 565664 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.rmo.dll | 14.0.3456.2 | 565664 | 2. Sep-22 | 21:51 | x86 |
Msasxpress.dll | 2017.140.249.94 | 26016 | 2. Sep-22 | 21:48 | x86 |
Msasxpress.dll | 2017.140.249.94 | 30112 | 2. Sep-22 | 21:51 | x64 |
Pbsvcacctsync.dll | 2017.140.3456.2 | 63416 | 2. Sep-22 | 21:48 | x86 |
Pbsvcacctsync.dll | 2017.140.3456.2 | 78264 | 2. Sep-22 | 21:51 | x64 |
Sql_common_core_keyfile.dll | 2017.140.3456.2 | 94648 | 2. Sep-22 | 21:50 | x64 |
Sqldumper.exe | 2017.140.3456.2 | 139688 | 2. Sep-22 | 21:29 | x64 |
Sqldumper.exe | 2017.140.3456.2 | 117176 | 2. Sep-22 | 21:47 | x86 |
Sqlftacct.dll | 2017.140.3456.2 | 50080 | 2. Sep-22 | 21:48 | x86 |
Sqlftacct.dll | 2017.140.3456.2 | 58272 | 2. Sep-22 | 21:51 | x64 |
Sqlmanager.dll | 2017.140.17218.0 | 602848 | 2. Sep-22 | 21:47 | x86 |
Sqlmanager.dll | 2017.140.17218.0 | 734952 | 2. Sep-22 | 21:51 | x64 |
Sqlmgmprovider.dll | 2017.140.3456.2 | 369576 | 2. Sep-22 | 21:47 | x86 |
Sqlmgmprovider.dll | 2017.140.3456.2 | 414120 | 2. Sep-22 | 21:51 | x64 |
Sqlsecacctchg.dll | 2017.140.3456.2 | 29088 | 2. Sep-22 | 21:48 | x86 |
Sqlsecacctchg.dll | 2017.140.3456.2 | 31672 | 2. Sep-22 | 21:51 | x64 |
Sqlsvcsync.dll | 2017.140.3456.2 | 268200 | 2. Sep-22 | 21:48 | x86 |
Sqlsvcsync.dll | 2017.140.3456.2 | 352160 | 2. Sep-22 | 21:51 | x64 |
Sqltdiagn.dll | 2017.140.3456.2 | 54696 | 2. Sep-22 | 21:47 | x86 |
Sqltdiagn.dll | 2017.140.3456.2 | 61864 | 2. Sep-22 | 21:51 | x64 |
Svrenumapi150.dll | 2017.140.3456.2 | 889256 | 2. Sep-22 | 21:48 | x86 |
Svrenumapi150.dll | 2017.140.3456.2 | 1168808 | 2. Sep-22 | 21:51 | x64 |
SQL Server 2017-Data Quality-Client
Dateiname | Dateiversion | Dateigröße | Datum | Zeit | Plattform |
---|---|---|---|---|---|
Dumpbin.exe | 12.10.30102.2 | 24624 | 2. Sep-22 | 21:48 | x86 |
Link.exe | 12.10.30102.2 | 852528 | 2. Sep-22 | 21:48 | x86 |
Mspdb120.dll | 12.10.30102.2 | 259632 | 2. Sep-22 | 21:48 | x86 |
Sql_dqc_keyfile.dll | 2017.140.3456.2 | 94648 | 2. Sep-22 | 21:50 | x64 |
Stdole.dll | 7.0.9466.0 | 32296 | 2. Sep-22 | 21:48 | x86 |
SQL Server 2017-Datenqualität
Dateiname | Dateiversion | Dateigröße | Datum | Zeit | Plattform |
---|---|---|---|---|---|
Microsoft.practices.enterpriselibrary.common.dll | 4.1.0.0 | 208648 | 2. Sep-22 | 21:47 | x86 |
Microsoft.practices.enterpriselibrary.common.dll | 4.1.0.0 | 208648 | 2. Sep-22 | 21:50 | x86 |
Microsoft.practices.enterpriselibrary.logging.dll | 4.1.0.0 | 264968 | 2. Sep-22 | 21:47 | x86 |
Microsoft.practices.enterpriselibrary.logging.dll | 4.1.0.0 | 264968 | 2. Sep-22 | 21:50 | x86 |
SQL Server 2017-sql_dreplay_client
Dateiname | Dateiversion | Dateigröße | Datum | Zeit | Plattform |
---|---|---|---|---|---|
Dreplayclient.exe | 2017.140.3456.2 | 115104 | 2. Sep-22 | 21:43 | x86 |
Dreplaycommon.dll | 2017.140.3456.2 | 694176 | 2. Sep-22 | 21:43 | x86 |
Dreplayserverps.dll | 2017.140.3456.2 | 27064 | 2. Sep-22 | 21:43 | x86 |
Dreplayutil.dll | 2017.140.3456.2 | 304552 | 2. Sep-22 | 21:43 | x86 |
Instapi150.dll | 2017.140.3456.2 | 66472 | 2. Sep-22 | 21:51 | x64 |
Sql_dreplay_client_keyfile.dll | 2017.140.3456.2 | 94648 | 2. Sep-22 | 21:50 | x64 |
Sqlresourceloader.dll | 2017.140.3456.2 | 23480 | 2. Sep-22 | 21:47 | x86 |
SQL Server 2017-sql_dreplay_controller
Dateiname | Dateiversion | Dateigröße | Datum | Zeit | Plattform |
---|---|---|---|---|---|
Dreplaycommon.dll | 2017.140.3456.2 | 694176 | 2. Sep-22 | 21:43 | x86 |
Dreplaycontroller.exe | 2017.140.3456.2 | 344488 | 2. Sep-22 | 21:43 | x86 |
Dreplayprocess.dll | 2017.140.3456.2 | 165800 | 2. Sep-22 | 21:43 | x86 |
Dreplayserverps.dll | 2017.140.3456.2 | 27064 | 2. Sep-22 | 21:43 | x86 |
Instapi150.dll | 2017.140.3456.2 | 66472 | 2. Sep-22 | 21:51 | x64 |
Sql_dreplay_controller_keyfile.dll | 2017.140.3456.2 | 94648 | 2. Sep-22 | 21:50 | x64 |
Sqlresourceloader.dll | 2017.140.3456.2 | 23480 | 2. Sep-22 | 21:47 | x86 |
SQL Server 2017 Database Services Core Instance
Dateiname | Dateiversion | Dateigröße | Datum | Zeit | Plattform |
---|---|---|---|---|---|
Backuptourl.exe | 14.0.3456.2 | 34720 | 2. Sep-22 | 21:50 | x64 |
Batchparser.dll | 2017.140.3456.2 | 175016 | 2. Sep-22 | 21:50 | x64 |
C1.dll | 18.10.40116.18 | 925232 | 2. Sep-22 | 21:29 | x64 |
C2.dll | 18.10.40116.18 | 5341440 | 2. Sep-22 | 21:29 | x64 |
Cl.exe | 18.10.40116.18 | 192048 | 2. Sep-22 | 21:29 | x64 |
Clui.dll | 18.10.40116.10 | 486144 | 2. Sep-22 | 21:45 | x64 |
Databasemailprotocols.dll | 14.0.17178.0 | 48352 | 2. Sep-22 | 21:50 | x86 |
Datacollectorcontroller.dll | 2017.140.3456.2 | 221600 | 2. Sep-22 | 21:50 | x64 |
Dcexec.exe | 2017.140.3456.2 | 68512 | 2. Sep-22 | 21:50 | x64 |
Fssres.dll | 2017.140.3456.2 | 84896 | 2. Sep-22 | 21:51 | x64 |
Hadrres.dll | 2017.140.3456.2 | 183720 | 2. Sep-22 | 21:51 | x64 |
Hkcompile.dll | 2017.140.3456.2 | 1417112 | 2. Sep-22 | 21:51 | x64 |
Hkengine.dll | 2017.140.3456.2 | 5857208 | 2. Sep-22 | 21:51 | x64 |
Hkruntime.dll | 2017.140.3456.2 | 157088 | 2. Sep-22 | 21:51 | x64 |
Link.exe | 12.10.40116.18 | 1017392 | 2. Sep-22 | 21:29 | x64 |
Microsoft.analysisservices.applocal.xmla.dll | 14.0.249.94 | 735144 | 2. Sep-22 | 21:50 | x86 |
Microsoft.applicationinsights.dll | 2.7.0.13435 | 329872 | 2. Sep-22 | 21:30 | x86 |
Microsoft.sqlautoadmin.autobackupagent.dll | 14.0.3456.2 | 232864 | 2. Sep-22 | 21:50 | x86 |
Microsoft.sqlautoadmin.sqlautoadmin.dll | 14.0.3456.2 | 74144 | 2. Sep-22 | 21:50 | x86 |
Microsoft.sqlserver.types.dll | 2017.140.3456.2 | 386984 | 2. Sep-22 | 21:51 | x86 |
Microsoft.sqlserver.vdiinterface.dll | 2017.140.3456.2 | 66472 | 2. Sep-22 | 21:51 | x64 |
Microsoft.sqlserver.xe.core.dll | 2017.140.3456.2 | 59304 | 2. Sep-22 | 21:51 | x64 |
Microsoft.sqlserver.xevent.configuration.dll | 2017.140.3456.2 | 146344 | 2. Sep-22 | 21:51 | x64 |
Microsoft.sqlserver.xevent.dll | 2017.140.3456.2 | 153504 | 2. Sep-22 | 21:51 | x64 |
Microsoft.sqlserver.xevent.linq.dll | 2017.140.3456.2 | 297888 | 2. Sep-22 | 21:51 | x64 |
Microsoft.sqlserver.xevent.targets.dll | 2017.140.3456.2 | 69024 | 2. Sep-22 | 21:51 | x64 |
Msobj120.dll | 12.10.40116.18 | 129576 | 2. Sep-22 | 21:29 | x64 |
Mspdbcore.dll | 12.10.40116.18 | 559144 | 2. Sep-22 | 21:29 | x64 |
Mspdbcore.dll | 12.10.40116.18 | 559144 | 2. Sep-22 | 21:29 | x64 |
Msvcp120.dll | 12.10.40116.18 | 661040 | 2. Sep-22 | 21:29 | x64 |
Msvcr120.dll | 12.10.40116.18 | 964656 | 2. Sep-22 | 21:29 | x64 |
Odsole70.dll | 2017.140.3456.2 | 86944 | 2. Sep-22 | 21:51 | x64 |
Opends60.dll | 2017.140.3456.2 | 27048 | 2. Sep-22 | 21:51 | x64 |
Qds.dll | 2017.140.3456.2 | 1179040 | 2. Sep-22 | 21:51 | x64 |
Rsfxft.dll | 2017.140.3456.2 | 29112 | 2. Sep-22 | 21:51 | x64 |
Secforwarder.dll | 2017.140.3456.2 | 31648 | 2. Sep-22 | 21:51 | x64 |
Sqagtres.dll | 2017.140.3456.2 | 70072 | 2. Sep-22 | 21:51 | x64 |
Sql_engine_core_inst_keyfile.dll | 2017.140.3456.2 | 94648 | 2. Sep-22 | 21:50 | x64 |
Sqlaamss.dll | 2017.140.3456.2 | 85944 | 2. Sep-22 | 21:51 | x64 |
Sqlaccess.dll | 2017.140.3456.2 | 469944 | 2. Sep-22 | 21:51 | x64 |
Sqlagent.exe | 2017.140.3456.2 | 599464 | 2. Sep-22 | 21:51 | x64 |
Sqlagentctr140.dll | 2017.140.3456.2 | 48568 | 2. Sep-22 | 21:47 | x86 |
Sqlagentctr140.dll | 2017.140.3456.2 | 57272 | 2. Sep-22 | 21:51 | x64 |
Sqlagentlog.dll | 2017.140.3456.2 | 27048 | 2. Sep-22 | 21:51 | x64 |
Sqlagentmail.dll | 2017.140.3456.2 | 48056 | 2. Sep-22 | 21:51 | x64 |
Sqlboot.dll | 2017.140.3456.2 | 191912 | 2. Sep-22 | 21:51 | x64 |
Sqlceip.exe | 14.0.3456.2 | 269216 | 2. Sep-22 | 21:30 | x86 |
Sqlcmdss.dll | 2017.140.3456.2 | 68536 | 2. Sep-22 | 21:51 | x64 |
Sqlctr140.dll | 2017.140.3456.2 | 107448 | 2. Sep-22 | 21:48 | x86 |
Sqlctr140.dll | 2017.140.3456.2 | 124848 | 2. Sep-22 | 21:51 | x64 |
Sqldk.dll | 2017.140.3456.2 | 2806184 | 2. Sep-22 | 21:51 | x64 |
Sqldtsss.dll | 2017.140.3456.2 | 103336 | 2. Sep-22 | 21:51 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 1500584 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3301792 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3486624 | 2. Sep-22 | 21:28 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3920288 | 2. Sep-22 | 21:42 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 4032920 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3218328 | 2. Sep-22 | 21:32 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3372456 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3922848 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3792296 | 2. Sep-22 | 21:40 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3826080 | 2. Sep-22 | 21:32 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 2093480 | 2. Sep-22 | 21:46 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 2039712 | 2. Sep-22 | 21:45 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3641256 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3343776 | 2. Sep-22 | 21:28 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3785128 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3593624 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3601816 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3407784 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3296160 | 2. Sep-22 | 21:41 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 1447840 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3682712 | 2. Sep-22 | 21:32 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3790752 | 2. Sep-22 | 21:29 | x64 |
Sqliosim.com | 2017.140.3456.2 | 307624 | 2. Sep-22 | 21:51 | x64 |
Sqliosim.exe | 2017.140.3456.2 | 3014056 | 2. Sep-22 | 21:51 | x64 |
Sqllang.dll | 2017.140.3456.2 | 41384344 | 2. Sep-22 | 21:51 | x64 |
Sqlmin.dll | 2017.140.3456.2 | 40599968 | 2. Sep-22 | 21:51 | x64 |
Sqlolapss.dll | 2017.140.3456.2 | 103336 | 2. Sep-22 | 21:51 | x64 |
Sqlos.dll | 2017.140.3456.2 | 20376 | 2. Sep-22 | 21:51 | x64 |
Sqlpowershellss.dll | 2017.140.3456.2 | 63912 | 2. Sep-22 | 21:51 | x64 |
Sqlrepss.dll | 2017.140.3456.2 | 62888 | 2. Sep-22 | 21:51 | x64 |
Sqlresld.dll | 2017.140.3456.2 | 25016 | 2. Sep-22 | 21:51 | x64 |
Sqlresourceloader.dll | 2017.140.3456.2 | 26552 | 2. Sep-22 | 21:51 | x64 |
Sqlscm.dll | 2017.140.3456.2 | 66976 | 2. Sep-22 | 21:51 | x64 |
Sqlscriptdowngrade.dll | 2017.140.3456.2 | 21944 | 2. Sep-22 | 21:51 | x64 |
Sqlscriptupgrade.dll | 2017.140.3456.2 | 5893560 | 2. Sep-22 | 21:51 | x64 |
Sqlserverspatial150.dll | 2017.140.3456.2 | 726944 | 2. Sep-22 | 21:51 | x64 |
Sqlservr.exe | 2017.140.3456.2 | 482712 | 2. Sep-22 | 21:51 | x64 |
Sqlsvc.dll | 2017.140.3456.2 | 157112 | 2. Sep-22 | 21:51 | x64 |
Sqltses.dll | 2017.140.3456.2 | 9560480 | 2. Sep-22 | 21:51 | x64 |
Sqsrvres.dll | 2017.140.3456.2 | 256936 | 2. Sep-22 | 21:51 | x64 |
Stretchcodegen.exe | 14.0.3456.2 | 50600 | 2. Sep-22 | 21:51 | x86 |
Svl.dll | 2017.140.3456.2 | 147872 | 2. Sep-22 | 21:51 | x64 |
Xe.dll | 2017.140.3456.2 | 667576 | 2. Sep-22 | 21:53 | x64 |
Xmlrw.dll | 2017.140.3456.2 | 299424 | 2. Sep-22 | 21:53 | x64 |
Xmlrwbin.dll | 2017.140.3456.2 | 218552 | 2. Sep-22 | 21:53 | x64 |
Xpadsi.exe | 2017.140.3456.2 | 85928 | 2. Sep-22 | 21:51 | x64 |
Xplog70.dll | 2017.140.3456.2 | 72088 | 2. Sep-22 | 21:53 | x64 |
Xpqueue.dll | 2017.140.3456.2 | 69024 | 2. Sep-22 | 21:53 | x64 |
Xprepl.dll | 2017.140.3456.2 | 97704 | 2. Sep-22 | 21:53 | x64 |
Xpsqlbot.dll | 2017.140.3456.2 | 26536 | 2. Sep-22 | 21:53 | x64 |
Xpstar.dll | 2017.140.3456.2 | 446368 | 2. Sep-22 | 21:51 | x64 |
SQL Server 2017 Database Services Core Shared
Dateiname | Dateiversion | Dateigröße | Datum | Zeit | Plattform |
---|---|---|---|---|---|
Batchparser.dll | 2017.140.3456.2 | 154552 | 2. Sep-22 | 21:43 | x86 |
Batchparser.dll | 2017.140.3456.2 | 175016 | 2. Sep-22 | 21:50 | x64 |
Bcp.exe | 2017.140.3456.2 | 114088 | 2. Sep-22 | 21:51 | x64 |
Commanddest.dll | 2017.140.3456.2 | 240040 | 2. Sep-22 | 21:50 | x64 |
Datacollectorenumerators.dll | 2017.140.3456.2 | 110520 | 2. Sep-22 | 21:50 | x64 |
Datacollectortasks.dll | 2017.140.3456.2 | 182184 | 2. Sep-22 | 21:50 | x64 |
Distrib.exe | 2017.140.3456.2 | 199072 | 2. Sep-22 | 21:51 | x64 |
Dteparse.dll | 2017.140.3456.2 | 105896 | 2. Sep-22 | 21:50 | x64 |
Dteparsemgd.dll | 2017.140.3456.2 | 83384 | 2. Sep-22 | 21:50 | x64 |
Dtepkg.dll | 2017.140.3456.2 | 132008 | 2. Sep-22 | 21:50 | x64 |
Dtexec.exe | 2017.140.3456.2 | 69024 | 2. Sep-22 | 21:50 | x64 |
Dts.dll | 2017.140.3456.2 | 2995112 | 2. Sep-22 | 21:50 | x64 |
Dtscomexpreval.dll | 2017.140.3456.2 | 469416 | 2. Sep-22 | 21:50 | x64 |
Dtsconn.dll | 2017.140.3456.2 | 494504 | 2. Sep-22 | 21:50 | x64 |
Dtshost.exe | 2017.140.3456.2 | 100280 | 2. Sep-22 | 21:51 | x64 |
Dtslog.dll | 2017.140.3456.2 | 114600 | 2. Sep-22 | 21:50 | x64 |
Dtsmsg150.dll | 2017.140.3456.2 | 539560 | 2. Sep-22 | 21:51 | x64 |
Dtspipeline.dll | 2017.140.3456.2 | 1262504 | 2. Sep-22 | 21:50 | x64 |
Dtspipelineperf150.dll | 2017.140.3456.2 | 42424 | 2. Sep-22 | 21:50 | x64 |
Dtuparse.dll | 2017.140.3456.2 | 83368 | 2. Sep-22 | 21:50 | x64 |
Dtutil.exe | 2017.140.3456.2 | 142760 | 2. Sep-22 | 21:50 | x64 |
Exceldest.dll | 2017.140.3456.2 | 254888 | 2. Sep-22 | 21:50 | x64 |
Excelsrc.dll | 2017.140.3456.2 | 276904 | 2. Sep-22 | 21:50 | x64 |
Execpackagetask.dll | 2017.140.3456.2 | 162216 | 2. Sep-22 | 21:50 | x64 |
Flatfiledest.dll | 2017.140.3456.2 | 380840 | 2. Sep-22 | 21:50 | x64 |
Flatfilesrc.dll | 2017.140.3456.2 | 393640 | 2. Sep-22 | 21:50 | x64 |
Foreachfileenumerator.dll | 2017.140.3456.2 | 90536 | 2. Sep-22 | 21:50 | x64 |
Hkengperfctrs.dll | 2017.140.3456.2 | 53664 | 2. Sep-22 | 21:51 | x64 |
Ionic.zip.dll | 1.9.1.8 | 471440 | 2. Sep-22 | 21:44 | x86 |
Logread.exe | 2017.140.3456.2 | 630696 | 2. Sep-22 | 21:51 | x64 |
Mergetxt.dll | 2017.140.3456.2 | 59304 | 2. Sep-22 | 21:51 | x64 |
Microsoft.analysisservices.applocal.core.dll | 14.0.249.94 | 1376160 | 2. Sep-22 | 21:50 | x86 |
Microsoft.data.datafeedclient.dll | 13.1.1.0 | 171208 | 2. Sep-22 | 21:44 | x86 |
Microsoft.exceptionmessagebox.dll | 14.0.3456.2 | 132008 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.integrationservice.hadoop.common.dll | 14.0.3456.2 | 49592 | 2. Sep-22 | 21:50 | x86 |
Microsoft.sqlserver.integrationservice.hadoopcomponents.dll | 14.0.3456.2 | 83872 | 2. Sep-22 | 21:50 | x86 |
Microsoft.sqlserver.integrationservice.hadooptasks.dll | 14.0.3456.2 | 67512 | 2. Sep-22 | 21:50 | x86 |
Microsoft.sqlserver.maintenanceplantasks.dll | 14.0.3456.2 | 386488 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.manageddts.dll | 14.0.3456.2 | 608680 | 2. Sep-22 | 21:51 | x86 |
Microsoft.sqlserver.replication.dll | 2017.140.3456.2 | 1659304 | 2. Sep-22 | 21:51 | x64 |
Microsoft.sqlserver.rmo.dll | 14.0.3456.2 | 565664 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.xevent.configuration.dll | 2017.140.3456.2 | 146344 | 2. Sep-22 | 21:51 | x64 |
Microsoft.sqlserver.xevent.dll | 2017.140.3456.2 | 153504 | 2. Sep-22 | 21:51 | x64 |
Msdtssrvrutil.dll | 2017.140.3456.2 | 97208 | 2. Sep-22 | 21:50 | x64 |
Msgprox.dll | 2017.140.3456.2 | 266168 | 2. Sep-22 | 21:51 | x64 |
Msxmlsql.dll | 2017.140.3456.2 | 1442208 | 2. Sep-22 | 21:51 | x64 |
Newtonsoft.json.dll | 6.0.8.18111 | 522856 | 2. Sep-22 | 21:44 | x86 |
Oledbdest.dll | 2017.140.3456.2 | 255400 | 2. Sep-22 | 21:50 | x64 |
Oledbsrc.dll | 2017.140.3456.2 | 283048 | 2. Sep-22 | 21:50 | x64 |
Osql.exe | 2017.140.3456.2 | 69544 | 2. Sep-22 | 21:50 | x64 |
Qrdrsvc.exe | 2017.140.3456.2 | 469944 | 2. Sep-22 | 21:51 | x64 |
Rawdest.dll | 2017.140.3456.2 | 200632 | 2. Sep-22 | 21:51 | x64 |
Rawsource.dll | 2017.140.3456.2 | 188344 | 2. Sep-22 | 21:51 | x64 |
Rdistcom.dll | 2017.140.3456.2 | 853432 | 2. Sep-22 | 21:51 | x64 |
Recordsetdest.dll | 2017.140.3456.2 | 178616 | 2. Sep-22 | 21:51 | x64 |
Replagnt.dll | 2017.140.3456.2 | 25000 | 2. Sep-22 | 21:51 | x64 |
Repldp.dll | 2017.140.3456.2 | 286648 | 2. Sep-22 | 21:51 | x64 |
Replerrx.dll | 2017.140.3456.2 | 149936 | 2. Sep-22 | 21:53 | x64 |
Replisapi.dll | 2017.140.3456.2 | 358304 | 2. Sep-22 | 21:53 | x64 |
Replmerg.exe | 2017.140.3456.2 | 521120 | 2. Sep-22 | 21:51 | x64 |
Replprov.dll | 2017.140.3456.2 | 798136 | 2. Sep-22 | 21:53 | x64 |
Replrec.dll | 2017.140.3456.2 | 973744 | 2. Sep-22 | 21:53 | x64 |
Replsub.dll | 2017.140.3456.2 | 441272 | 2. Sep-22 | 21:53 | x64 |
Replsync.dll | 2017.140.3456.2 | 149432 | 2. Sep-22 | 21:53 | x64 |
Sort00001000.dll | 4.0.30319.576 | 871680 | 2. Sep-22 | 21:51 | x64 |
Sort00060101.dll | 4.0.30319.576 | 75016 | 2. Sep-22 | 21:51 | x64 |
Spresolv.dll | 2017.140.3456.2 | 248248 | 2. Sep-22 | 21:51 | x64 |
Sql_engine_core_shared_keyfile.dll | 2017.140.3456.2 | 94648 | 2. Sep-22 | 21:50 | x64 |
Sqlcmd.exe | 2017.140.3456.2 | 243128 | 2. Sep-22 | 21:51 | x64 |
Sqldiag.exe | 2017.140.3456.2 | 1255848 | 2. Sep-22 | 21:51 | x64 |
Sqldistx.dll | 2017.140.3456.2 | 220576 | 2. Sep-22 | 21:51 | x64 |
Sqllogship.exe | 14.0.3456.2 | 100256 | 2. Sep-22 | 21:51 | x64 |
Sqlmergx.dll | 2017.140.3456.2 | 356256 | 2. Sep-22 | 21:51 | x64 |
Sqlresld.dll | 2017.140.3456.2 | 22968 | 2. Sep-22 | 21:47 | x86 |
Sqlresld.dll | 2017.140.3456.2 | 25016 | 2. Sep-22 | 21:51 | x64 |
Sqlresourceloader.dll | 2017.140.3456.2 | 23480 | 2. Sep-22 | 21:47 | x86 |
Sqlresourceloader.dll | 2017.140.3456.2 | 26552 | 2. Sep-22 | 21:51 | x64 |
Sqlscm.dll | 2017.140.3456.2 | 56248 | 2. Sep-22 | 21:47 | x86 |
Sqlscm.dll | 2017.140.3456.2 | 66976 | 2. Sep-22 | 21:51 | x64 |
Sqlsvc.dll | 2017.140.3456.2 | 129448 | 2. Sep-22 | 21:47 | x86 |
Sqlsvc.dll | 2017.140.3456.2 | 157112 | 2. Sep-22 | 21:51 | x64 |
Sqltaskconnections.dll | 2017.140.3456.2 | 177064 | 2. Sep-22 | 21:51 | x64 |
Sqlwep140.dll | 2017.140.3456.2 | 99768 | 2. Sep-22 | 21:51 | x64 |
Ssdebugps.dll | 2017.140.3456.2 | 27552 | 2. Sep-22 | 21:51 | x64 |
Ssisoledb.dll | 2017.140.3456.2 | 210328 | 2. Sep-22 | 21:51 | x64 |
Ssradd.dll | 2017.140.3456.2 | 71080 | 2. Sep-22 | 21:51 | x64 |
Ssravg.dll | 2017.140.3456.2 | 71584 | 2. Sep-22 | 21:51 | x64 |
Ssrdown.dll | 2017.140.3456.2 | 56232 | 2. Sep-22 | 21:51 | x64 |
Ssrmax.dll | 2017.140.3456.2 | 69544 | 2. Sep-22 | 21:51 | x64 |
Ssrmin.dll | 2017.140.3456.2 | 69536 | 2. Sep-22 | 21:51 | x64 |
Ssrpub.dll | 2017.140.3456.2 | 56744 | 2. Sep-22 | 21:51 | x64 |
Ssrup.dll | 2017.140.3456.2 | 56224 | 2. Sep-22 | 21:51 | x64 |
Tablediff.exe | 14.0.3456.2 | 80808 | 2. Sep-22 | 21:53 | x64 |
Txagg.dll | 2017.140.3456.2 | 356264 | 2. Sep-22 | 21:51 | x64 |
Txbdd.dll | 2017.140.3456.2 | 169384 | 2. Sep-22 | 21:51 | x64 |
Txdatacollector.dll | 2017.140.3456.2 | 361384 | 2. Sep-22 | 21:51 | x64 |
Txdataconvert.dll | 2017.140.3456.2 | 287144 | 2. Sep-22 | 21:51 | x64 |
Txderived.dll | 2017.140.3456.2 | 598440 | 2. Sep-22 | 21:51 | x64 |
Txlookup.dll | 2017.140.3456.2 | 522152 | 2. Sep-22 | 21:51 | x64 |
Txmerge.dll | 2017.140.3456.2 | 225720 | 2. Sep-22 | 21:51 | x64 |
Txmergejoin.dll | 2017.140.3456.2 | 274344 | 2. Sep-22 | 21:51 | x64 |
Txmulticast.dll | 2017.140.3456.2 | 121784 | 2. Sep-22 | 21:51 | x64 |
Txrowcount.dll | 2017.140.3456.2 | 122792 | 2. Sep-22 | 21:51 | x64 |
Txsort.dll | 2017.140.3456.2 | 250808 | 2. Sep-22 | 21:51 | x64 |
Txsplit.dll | 2017.140.3456.2 | 590760 | 2. Sep-22 | 21:51 | x64 |
Txunionall.dll | 2017.140.3456.2 | 178104 | 2. Sep-22 | 21:51 | x64 |
Xe.dll | 2017.140.3456.2 | 667576 | 2. Sep-22 | 21:53 | x64 |
Xmlrw.dll | 2017.140.3456.2 | 299424 | 2. Sep-22 | 21:53 | x64 |
Xmlsub.dll | 2017.140.3456.2 | 256440 | 2. Sep-22 | 21:53 | x64 |
SQL Server 2017-sql_extensibility
Dateiname | Dateiversion | Dateigröße | Datum | Zeit | Plattform |
---|---|---|---|---|---|
Launchpad.exe | 2017.140.3456.2 | 1127864 | 2. Sep-22 | 21:51 | x64 |
Sql_extensibility_keyfile.dll | 2017.140.3456.2 | 94648 | 2. Sep-22 | 21:50 | x64 |
Sqlsatellite.dll | 2017.140.3456.2 | 918440 | 2. Sep-22 | 21:51 | x64 |
SQL Server 2017 Full-Text Engine
Dateiname | Dateiversion | Dateigröße | Datum | Zeit | Plattform |
---|---|---|---|---|---|
Fd.dll | 2017.140.3456.2 | 666552 | 2. Sep-22 | 21:51 | x64 |
Fdhost.exe | 2017.140.3456.2 | 110496 | 2. Sep-22 | 21:51 | x64 |
Fdlauncher.exe | 2017.140.3456.2 | 58272 | 2. Sep-22 | 21:51 | x64 |
Nlsdl.dll | 6.0.6001.18000 | 46360 | 2. Sep-22 | 21:51 | x64 |
Sql_fulltext_keyfile.dll | 2017.140.3456.2 | 94648 | 2. Sep-22 | 21:50 | x64 |
Sqlft140ph.dll | 2017.140.3456.2 | 63912 | 2. Sep-22 | 21:51 | x64 |
SQL Server 2017-sql_inst_mr
Dateiname | Dateiversion | Dateigröße | Datum | Zeit | Plattform |
---|---|---|---|---|---|
Imrdll.dll | 14.0.3456.2 | 18360 | 2. Sep-22 | 21:50 | x86 |
Sql_inst_mr_keyfile.dll | 2017.140.3456.2 | 94648 | 2. Sep-22 | 21:50 | x64 |
SQL Server 2017 Integration Services
Dateiname | Dateiversion | Dateigröße | Datum | Zeit | Plattform |
---|---|---|---|---|---|
Attunity.sqlserver.cdccontroltask.dll | 5.0.0.112 | 75264 | 2. Sep-22 | 21:43 | x86 |
Attunity.sqlserver.cdccontroltask.dll | 5.0.0.112 | 75264 | 2. Sep-22 | 21:50 | x86 |
Attunity.sqlserver.cdcsplit.dll | 5.0.0.112 | 36352 | 2. Sep-22 | 21:43 | x86 |
Attunity.sqlserver.cdcsplit.dll | 5.0.0.112 | 36352 | 2. Sep-22 | 21:50 | x86 |
Attunity.sqlserver.cdcsrc.dll | 5.0.0.112 | 76288 | 2. Sep-22 | 21:43 | x86 |
Attunity.sqlserver.cdcsrc.dll | 5.0.0.112 | 76288 | 2. Sep-22 | 21:50 | x86 |
Commanddest.dll | 2017.140.3456.2 | 194976 | 2. Sep-22 | 21:43 | x86 |
Commanddest.dll | 2017.140.3456.2 | 240040 | 2. Sep-22 | 21:50 | x64 |
Dteparse.dll | 2017.140.3456.2 | 95136 | 2. Sep-22 | 21:43 | x86 |
Dteparse.dll | 2017.140.3456.2 | 105896 | 2. Sep-22 | 21:50 | x64 |
Dteparsemgd.dll | 2017.140.3456.2 | 77752 | 2. Sep-22 | 21:43 | x86 |
Dteparsemgd.dll | 2017.140.3456.2 | 83384 | 2. Sep-22 | 21:50 | x64 |
Dtepkg.dll | 2017.140.3456.2 | 111016 | 2. Sep-22 | 21:43 | x86 |
Dtepkg.dll | 2017.140.3456.2 | 132008 | 2. Sep-22 | 21:50 | x64 |
Dtexec.exe | 2017.140.3456.2 | 61856 | 2. Sep-22 | 21:43 | x86 |
Dtexec.exe | 2017.140.3456.2 | 69024 | 2. Sep-22 | 21:50 | x64 |
Dts.dll | 2017.140.3456.2 | 2545048 | 2. Sep-22 | 21:43 | x86 |
Dts.dll | 2017.140.3456.2 | 2995112 | 2. Sep-22 | 21:50 | x64 |
Dtscomexpreval.dll | 2017.140.3456.2 | 412064 | 2. Sep-22 | 21:43 | x86 |
Dtscomexpreval.dll | 2017.140.3456.2 | 469416 | 2. Sep-22 | 21:50 | x64 |
Dtsconn.dll | 2017.140.3456.2 | 396704 | 2. Sep-22 | 21:43 | x86 |
Dtsconn.dll | 2017.140.3456.2 | 494504 | 2. Sep-22 | 21:50 | x64 |
Dtsdebughost.exe | 2017.140.3456.2 | 89504 | 2. Sep-22 | 21:43 | x86 |
Dtsdebughost.exe | 2017.140.3456.2 | 105896 | 2. Sep-22 | 21:50 | x64 |
Dtshost.exe | 2017.140.3456.2 | 85408 | 2. Sep-22 | 21:48 | x86 |
Dtshost.exe | 2017.140.3456.2 | 100280 | 2. Sep-22 | 21:51 | x64 |
Dtslog.dll | 2017.140.3456.2 | 97176 | 2. Sep-22 | 21:43 | x86 |
Dtslog.dll | 2017.140.3456.2 | 114600 | 2. Sep-22 | 21:50 | x64 |
Dtsmsg150.dll | 2017.140.3456.2 | 535456 | 2. Sep-22 | 21:48 | x86 |
Dtsmsg150.dll | 2017.140.3456.2 | 539560 | 2. Sep-22 | 21:51 | x64 |
Dtspipeline.dll | 2017.140.3456.2 | 1054624 | 2. Sep-22 | 21:43 | x86 |
Dtspipeline.dll | 2017.140.3456.2 | 1262504 | 2. Sep-22 | 21:50 | x64 |
Dtspipelineperf150.dll | 2017.140.3456.2 | 36792 | 2. Sep-22 | 21:43 | x86 |
Dtspipelineperf150.dll | 2017.140.3456.2 | 42424 | 2. Sep-22 | 21:50 | x64 |
Dtuparse.dll | 2017.140.3456.2 | 74656 | 2. Sep-22 | 21:43 | x86 |
Dtuparse.dll | 2017.140.3456.2 | 83368 | 2. Sep-22 | 21:50 | x64 |
Dtutil.exe | 2017.140.3456.2 | 121768 | 2. Sep-22 | 21:43 | x86 |
Dtutil.exe | 2017.140.3456.2 | 142760 | 2. Sep-22 | 21:50 | x64 |
Exceldest.dll | 2017.140.3456.2 | 208792 | 2. Sep-22 | 21:43 | x86 |
Exceldest.dll | 2017.140.3456.2 | 254888 | 2. Sep-22 | 21:50 | x64 |
Excelsrc.dll | 2017.140.3456.2 | 224672 | 2. Sep-22 | 21:43 | x86 |
Excelsrc.dll | 2017.140.3456.2 | 276904 | 2. Sep-22 | 21:50 | x64 |
Execpackagetask.dll | 2017.140.3456.2 | 129440 | 2. Sep-22 | 21:43 | x86 |
Execpackagetask.dll | 2017.140.3456.2 | 162216 | 2. Sep-22 | 21:50 | x64 |
Flatfiledest.dll | 2017.140.3456.2 | 326552 | 2. Sep-22 | 21:43 | x86 |
Flatfiledest.dll | 2017.140.3456.2 | 380840 | 2. Sep-22 | 21:50 | x64 |
Flatfilesrc.dll | 2017.140.3456.2 | 338328 | 2. Sep-22 | 21:43 | x86 |
Flatfilesrc.dll | 2017.140.3456.2 | 393640 | 2. Sep-22 | 21:50 | x64 |
Foreachfileenumerator.dll | 2017.140.3456.2 | 74648 | 2. Sep-22 | 21:43 | x86 |
Foreachfileenumerator.dll | 2017.140.3456.2 | 90536 | 2. Sep-22 | 21:50 | x64 |
Ionic.zip.dll | 1.9.1.8 | 471440 | 2. Sep-22 | 21:30 | x86 |
Ionic.zip.dll | 1.9.1.8 | 471440 | 2. Sep-22 | 21:44 | x86 |
Isdeploymentwizard.exe | 14.0.3456.2 | 461208 | 2. Sep-22 | 21:46 | x86 |
Isdeploymentwizard.exe | 14.0.3456.2 | 460704 | 2. Sep-22 | 21:50 | x64 |
Isserverexec.exe | 14.0.3456.2 | 143288 | 2. Sep-22 | 21:46 | x86 |
Isserverexec.exe | 14.0.3456.2 | 142760 | 2. Sep-22 | 21:50 | x64 |
Microsoft.analysisservices.applocal.core.dll | 14.0.249.94 | 1376184 | 2. Sep-22 | 21:47 | x86 |
Microsoft.analysisservices.applocal.core.dll | 14.0.249.94 | 1376160 | 2. Sep-22 | 21:50 | x86 |
Microsoft.applicationinsights.dll | 2.7.0.13435 | 329872 | 2. Sep-22 | 21:30 | x86 |
Microsoft.data.datafeedclient.dll | 13.1.1.0 | 171208 | 2. Sep-22 | 21:30 | x86 |
Microsoft.data.datafeedclient.dll | 13.1.1.0 | 171208 | 2. Sep-22 | 21:44 | x86 |
Microsoft.sqlserver.astasks.dll | 14.0.3456.2 | 106400 | 2. Sep-22 | 21:50 | x86 |
Microsoft.sqlserver.bulkinserttaskconnections.dll | 2017.140.3456.2 | 101304 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.bulkinserttaskconnections.dll | 2017.140.3456.2 | 106400 | 2. Sep-22 | 21:50 | x64 |
Microsoft.sqlserver.integrationservice.hadoop.common.dll | 14.0.3456.2 | 49592 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.integrationservice.hadoop.common.dll | 14.0.3456.2 | 49592 | 2. Sep-22 | 21:50 | x86 |
Microsoft.sqlserver.integrationservice.hadoopcomponents.dll | 14.0.3456.2 | 83872 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.integrationservice.hadoopcomponents.dll | 14.0.3456.2 | 83872 | 2. Sep-22 | 21:50 | x86 |
Microsoft.sqlserver.integrationservice.hadooptasks.dll | 14.0.3456.2 | 67512 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.integrationservice.hadooptasks.dll | 14.0.3456.2 | 67512 | 2. Sep-22 | 21:50 | x86 |
Microsoft.sqlserver.integrationservices.isserverdbupgrade.dll | 14.0.3456.2 | 508856 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.integrationservices.isserverdbupgrade.dll | 14.0.3456.2 | 508856 | 2. Sep-22 | 21:51 | x86 |
Microsoft.sqlserver.integrationservices.server.dll | 14.0.3456.2 | 77720 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.integrationservices.server.dll | 14.0.3456.2 | 77736 | 2. Sep-22 | 21:51 | x86 |
Microsoft.sqlserver.integrationservices.wizard.common.dll | 14.0.3456.2 | 410024 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.integrationservices.wizard.common.dll | 14.0.3456.2 | 410040 | 2. Sep-22 | 21:51 | x86 |
Microsoft.sqlserver.maintenanceplantasks.dll | 14.0.3456.2 | 386488 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.manageddts.dll | 14.0.3456.2 | 608680 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.manageddts.dll | 14.0.3456.2 | 608680 | 2. Sep-22 | 21:51 | x86 |
Microsoft.sqlserver.management.integrationservices.dll | 14.0.3456.2 | 247200 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.management.integrationservices.dll | 14.0.3456.2 | 247224 | 2. Sep-22 | 21:51 | x86 |
Microsoft.sqlserver.management.integrationservicesenum.dll | 14.0.3456.2 | 49080 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.management.integrationservicesenum.dll | 14.0.3456.2 | 49080 | 2. Sep-22 | 21:51 | x86 |
Microsoft.sqlserver.xevent.configuration.dll | 2017.140.3456.2 | 136088 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.xevent.configuration.dll | 2017.140.3456.2 | 146344 | 2. Sep-22 | 21:51 | x64 |
Microsoft.sqlserver.xevent.dll | 2017.140.3456.2 | 139680 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.xevent.dll | 2017.140.3456.2 | 153504 | 2. Sep-22 | 21:51 | x64 |
Msdtssrvr.exe | 14.0.3456.2 | 213920 | 2. Sep-22 | 21:51 | x64 |
Msdtssrvrutil.dll | 2017.140.3456.2 | 84384 | 2. Sep-22 | 21:46 | x86 |
Msdtssrvrutil.dll | 2017.140.3456.2 | 97208 | 2. Sep-22 | 21:50 | x64 |
Msmdpp.dll | 2017.140.249.94 | 9193912 | 2. Sep-22 | 21:51 | x64 |
Newtonsoft.json.dll | 6.0.8.18111 | 513424 | 2. Sep-22 | 21:29 | x86 |
Newtonsoft.json.dll | 6.0.8.18111 | 513424 | 2. Sep-22 | 21:42 | x86 |
Newtonsoft.json.dll | 6.0.8.18111 | 522856 | 2. Sep-22 | 21:30 | x86 |
Newtonsoft.json.dll | 6.0.8.18111 | 522856 | 2. Sep-22 | 21:44 | x86 |
Oledbdest.dll | 2017.140.3456.2 | 208800 | 2. Sep-22 | 21:46 | x86 |
Oledbdest.dll | 2017.140.3456.2 | 255400 | 2. Sep-22 | 21:50 | x64 |
Oledbsrc.dll | 2017.140.3456.2 | 227232 | 2. Sep-22 | 21:46 | x86 |
Oledbsrc.dll | 2017.140.3456.2 | 283048 | 2. Sep-22 | 21:50 | x64 |
Rawdest.dll | 2017.140.3456.2 | 160696 | 2. Sep-22 | 21:48 | x86 |
Rawdest.dll | 2017.140.3456.2 | 200632 | 2. Sep-22 | 21:51 | x64 |
Rawsource.dll | 2017.140.3456.2 | 147360 | 2. Sep-22 | 21:48 | x86 |
Rawsource.dll | 2017.140.3456.2 | 188344 | 2. Sep-22 | 21:51 | x64 |
Recordsetdest.dll | 2017.140.3456.2 | 143264 | 2. Sep-22 | 21:48 | x86 |
Recordsetdest.dll | 2017.140.3456.2 | 178616 | 2. Sep-22 | 21:51 | x64 |
Sql_is_keyfile.dll | 2017.140.3456.2 | 94648 | 2. Sep-22 | 21:50 | x64 |
Sqlceip.exe | 14.0.3456.2 | 269216 | 2. Sep-22 | 21:30 | x86 |
Sqldest.dll | 2017.140.3456.2 | 207800 | 2. Sep-22 | 21:47 | x86 |
Sqldest.dll | 2017.140.3456.2 | 254904 | 2. Sep-22 | 21:51 | x64 |
Sqltaskconnections.dll | 2017.140.3456.2 | 146336 | 2. Sep-22 | 21:47 | x86 |
Sqltaskconnections.dll | 2017.140.3456.2 | 177064 | 2. Sep-22 | 21:51 | x64 |
Ssisoledb.dll | 2017.140.3456.2 | 170936 | 2. Sep-22 | 21:47 | x86 |
Ssisoledb.dll | 2017.140.3456.2 | 210328 | 2. Sep-22 | 21:51 | x64 |
Txagg.dll | 2017.140.3456.2 | 296352 | 2. Sep-22 | 21:48 | x86 |
Txagg.dll | 2017.140.3456.2 | 356264 | 2. Sep-22 | 21:51 | x64 |
Txbdd.dll | 2017.140.3456.2 | 133536 | 2. Sep-22 | 21:48 | x86 |
Txbdd.dll | 2017.140.3456.2 | 169384 | 2. Sep-22 | 21:51 | x64 |
Txbestmatch.dll | 2017.140.3456.2 | 487352 | 2. Sep-22 | 21:48 | x86 |
Txbestmatch.dll | 2017.140.3456.2 | 599464 | 2. Sep-22 | 21:51 | x64 |
Txcache.dll | 2017.140.3456.2 | 140192 | 2. Sep-22 | 21:48 | x86 |
Txcache.dll | 2017.140.3456.2 | 179128 | 2. Sep-22 | 21:51 | x64 |
Txcharmap.dll | 2017.140.3456.2 | 243096 | 2. Sep-22 | 21:48 | x86 |
Txcharmap.dll | 2017.140.3456.2 | 285608 | 2. Sep-22 | 21:51 | x64 |
Txcopymap.dll | 2017.140.3456.2 | 139680 | 2. Sep-22 | 21:48 | x86 |
Txcopymap.dll | 2017.140.3456.2 | 179128 | 2. Sep-22 | 21:51 | x64 |
Txdataconvert.dll | 2017.140.3456.2 | 247200 | 2. Sep-22 | 21:48 | x86 |
Txdataconvert.dll | 2017.140.3456.2 | 287144 | 2. Sep-22 | 21:51 | x64 |
Txderived.dll | 2017.140.3456.2 | 509856 | 2. Sep-22 | 21:48 | x86 |
Txderived.dll | 2017.140.3456.2 | 598440 | 2. Sep-22 | 21:51 | x64 |
Txfileextractor.dll | 2017.140.3456.2 | 155040 | 2. Sep-22 | 21:48 | x86 |
Txfileextractor.dll | 2017.140.3456.2 | 197544 | 2. Sep-22 | 21:51 | x64 |
Txfileinserter.dll | 2017.140.3456.2 | 153504 | 2. Sep-22 | 21:48 | x86 |
Txfileinserter.dll | 2017.140.3456.2 | 190904 | 2. Sep-22 | 21:51 | x64 |
Txgroupdups.dll | 2017.140.3456.2 | 225184 | 2. Sep-22 | 21:48 | x86 |
Txgroupdups.dll | 2017.140.3456.2 | 287144 | 2. Sep-22 | 21:51 | x64 |
Txlineage.dll | 2017.140.3456.2 | 104352 | 2. Sep-22 | 21:48 | x86 |
Txlineage.dll | 2017.140.3456.2 | 131000 | 2. Sep-22 | 21:51 | x64 |
Txlookup.dll | 2017.140.3456.2 | 440760 | 2. Sep-22 | 21:48 | x86 |
Txlookup.dll | 2017.140.3456.2 | 522152 | 2. Sep-22 | 21:51 | x64 |
Txmerge.dll | 2017.140.3456.2 | 170912 | 2. Sep-22 | 21:48 | x86 |
Txmerge.dll | 2017.140.3456.2 | 225720 | 2. Sep-22 | 21:51 | x64 |
Txmergejoin.dll | 2017.140.3456.2 | 215968 | 2. Sep-22 | 21:48 | x86 |
Txmergejoin.dll | 2017.140.3456.2 | 274344 | 2. Sep-22 | 21:51 | x64 |
Txmulticast.dll | 2017.140.3456.2 | 97184 | 2. Sep-22 | 21:48 | x86 |
Txmulticast.dll | 2017.140.3456.2 | 121784 | 2. Sep-22 | 21:51 | x64 |
Txpivot.dll | 2017.140.3456.2 | 174496 | 2. Sep-22 | 21:48 | x86 |
Txpivot.dll | 2017.140.3456.2 | 219064 | 2. Sep-22 | 21:51 | x64 |
Txrowcount.dll | 2017.140.3456.2 | 96160 | 2. Sep-22 | 21:48 | x86 |
Txrowcount.dll | 2017.140.3456.2 | 122792 | 2. Sep-22 | 21:51 | x64 |
Txsampling.dll | 2017.140.3456.2 | 129952 | 2. Sep-22 | 21:48 | x86 |
Txsampling.dll | 2017.140.3456.2 | 168360 | 2. Sep-22 | 21:51 | x64 |
Txscd.dll | 2017.140.3456.2 | 164256 | 2. Sep-22 | 21:48 | x86 |
Txscd.dll | 2017.140.3456.2 | 214952 | 2. Sep-22 | 21:51 | x64 |
Txsort.dll | 2017.140.3456.2 | 202144 | 2. Sep-22 | 21:48 | x86 |
Txsort.dll | 2017.140.3456.2 | 250808 | 2. Sep-22 | 21:51 | x64 |
Txsplit.dll | 2017.140.3456.2 | 504760 | 2. Sep-22 | 21:48 | x86 |
Txsplit.dll | 2017.140.3456.2 | 590760 | 2. Sep-22 | 21:51 | x64 |
Txtermextraction.dll | 2017.140.3456.2 | 8609192 | 2. Sep-22 | 21:48 | x86 |
Txtermextraction.dll | 2017.140.3456.2 | 8670616 | 2. Sep-22 | 21:51 | x64 |
Txtermlookup.dll | 2017.140.3456.2 | 4101048 | 2. Sep-22 | 21:48 | x86 |
Txtermlookup.dll | 2017.140.3456.2 | 4151208 | 2. Sep-22 | 21:51 | x64 |
Txunionall.dll | 2017.140.3456.2 | 134040 | 2. Sep-22 | 21:48 | x86 |
Txunionall.dll | 2017.140.3456.2 | 178104 | 2. Sep-22 | 21:51 | x64 |
Txunpivot.dll | 2017.140.3456.2 | 154528 | 2. Sep-22 | 21:48 | x86 |
Txunpivot.dll | 2017.140.3456.2 | 193976 | 2. Sep-22 | 21:51 | x64 |
Xe.dll | 2017.140.3456.2 | 589752 | 2. Sep-22 | 21:48 | x86 |
Xe.dll | 2017.140.3456.2 | 667576 | 2. Sep-22 | 21:53 | x64 |
SQL Server 2017-sql_polybase_core_inst
Dateiname | Dateiversion | Dateigröße | Datum | Zeit | Plattform |
---|---|---|---|---|---|
Dms.dll | 13.0.9124.22 | 523848 | 2. Sep-22 | 21:40 | x86 |
Dmsnative.dll | 2016.130.9124.22 | 78408 | 2. Sep-22 | 21:40 | x64 |
Dwengineservice.dll | 13.0.9124.22 | 45640 | 2. Sep-22 | 21:40 | x86 |
Instapi150.dll | 2017.140.3456.2 | 66472 | 2. Sep-22 | 21:40 | x64 |
Microsoft.sqlserver.datawarehouse.backup.backupmetadata.dll | 13.0.9124.22 | 74824 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.catalog.dll | 13.0.9124.22 | 213576 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.common.dll | 13.0.9124.22 | 1799240 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.configuration.dll | 13.0.9124.22 | 116808 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.datamovement.common.dll | 13.0.9124.22 | 390216 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.datamovement.manager.dll | 13.0.9124.22 | 196168 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.datamovement.messagetypes.dll | 13.0.9124.22 | 131144 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.datamovement.messagingprotocol.dll | 13.0.9124.22 | 63048 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.diagnostics.dll | 13.0.9124.22 | 55368 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.distributor.dll | 13.0.9124.22 | 93768 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.engine.dll | 13.0.9124.22 | 792648 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.engine.statsstream.dll | 13.0.9124.22 | 87624 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.eventing.dll | 13.0.9124.22 | 77896 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.fabric.appliance.dll | 13.0.9124.22 | 42056 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.fabric.interface.dll | 13.0.9124.22 | 36936 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.fabric.polybase.dll | 13.0.9124.22 | 47688 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.fabric.xdbinterface.dll | 13.0.9124.22 | 27208 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.failover.dll | 13.0.9124.22 | 32328 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.hadoop.hadoopbridge.dll | 13.0.9124.22 | 129608 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.loadercommon.dll | 13.0.9124.22 | 95304 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.loadmanager.dll | 13.0.9124.22 | 109128 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.localization.dll | 13.0.9124.22 | 264264 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.localization.resources.dll | 13.0.9124.22 | 105032 | 2. Sep-22 | 21:31 | x86 |
Microsoft.sqlserver.datawarehouse.localization.resources.dll | 13.0.9124.22 | 119368 | 2. Sep-22 | 21:45 | x86 |
Microsoft.sqlserver.datawarehouse.localization.resources.dll | 13.0.9124.22 | 122440 | 2. Sep-22 | 21:43 | x86 |
Microsoft.sqlserver.datawarehouse.localization.resources.dll | 13.0.9124.22 | 118856 | 2. Sep-22 | 21:29 | x86 |
Microsoft.sqlserver.datawarehouse.localization.resources.dll | 13.0.9124.22 | 129096 | 2. Sep-22 | 21:32 | x86 |
Microsoft.sqlserver.datawarehouse.localization.resources.dll | 13.0.9124.22 | 121416 | 2. Sep-22 | 21:45 | x86 |
Microsoft.sqlserver.datawarehouse.localization.resources.dll | 13.0.9124.22 | 116296 | 2. Sep-22 | 21:29 | x86 |
Microsoft.sqlserver.datawarehouse.localization.resources.dll | 13.0.9124.22 | 149576 | 2. Sep-22 | 21:41 | x86 |
Microsoft.sqlserver.datawarehouse.localization.resources.dll | 13.0.9124.22 | 102984 | 2. Sep-22 | 21:29 | x86 |
Microsoft.sqlserver.datawarehouse.localization.resources.dll | 13.0.9124.22 | 118344 | 2. Sep-22 | 21:39 | x86 |
Microsoft.sqlserver.datawarehouse.nodes.dll | 13.0.9124.22 | 70216 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.nulltransaction.dll | 13.0.9124.22 | 28744 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.parallelizer.dll | 13.0.9124.22 | 43592 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.resourcemanagement.dll | 13.0.9124.22 | 83528 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.setup.componentupgradelibrary.dll | 13.0.9124.22 | 136776 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.sql.dll | 13.0.9124.22 | 2340936 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.sql.parser.dll | 13.0.9124.22 | 3860040 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.sql.parser.resources.dll | 13.0.9124.22 | 110664 | 2. Sep-22 | 21:31 | x86 |
Microsoft.sqlserver.datawarehouse.sql.parser.resources.dll | 13.0.9124.22 | 123464 | 2. Sep-22 | 21:45 | x86 |
Microsoft.sqlserver.datawarehouse.sql.parser.resources.dll | 13.0.9124.22 | 128072 | 2. Sep-22 | 21:43 | x86 |
Microsoft.sqlserver.datawarehouse.sql.parser.resources.dll | 13.0.9124.22 | 123976 | 2. Sep-22 | 21:29 | x86 |
Microsoft.sqlserver.datawarehouse.sql.parser.resources.dll | 13.0.9124.22 | 136776 | 2. Sep-22 | 21:32 | x86 |
Microsoft.sqlserver.datawarehouse.sql.parser.resources.dll | 13.0.9124.22 | 124488 | 2. Sep-22 | 21:45 | x86 |
Microsoft.sqlserver.datawarehouse.sql.parser.resources.dll | 13.0.9124.22 | 121416 | 2. Sep-22 | 21:29 | x86 |
Microsoft.sqlserver.datawarehouse.sql.parser.resources.dll | 13.0.9124.22 | 156232 | 2. Sep-22 | 21:41 | x86 |
Microsoft.sqlserver.datawarehouse.sql.parser.resources.dll | 13.0.9124.22 | 108616 | 2. Sep-22 | 21:29 | x86 |
Microsoft.sqlserver.datawarehouse.sql.parser.resources.dll | 13.0.9124.22 | 122952 | 2. Sep-22 | 21:39 | x86 |
Microsoft.sqlserver.datawarehouse.sqldistributor.dll | 13.0.9124.22 | 70216 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.transactsql.scriptdom.dll | 13.0.9124.22 | 2756168 | 2. Sep-22 | 21:40 | x86 |
Microsoft.sqlserver.datawarehouse.utilities.dll | 13.0.9124.22 | 751688 | 2. Sep-22 | 21:40 | x86 |
Mpdwinterop.dll | 2017.140.3456.2 | 401312 | 2. Sep-22 | 21:40 | x64 |
Mpdwsvc.exe | 2017.140.3456.2 | 7325088 | 2. Sep-22 | 21:40 | x64 |
Secforwarder.dll | 2017.140.3456.2 | 31648 | 2. Sep-22 | 21:40 | x64 |
Sharedmemory.dll | 2016.130.9124.22 | 64584 | 2. Sep-22 | 21:40 | x64 |
Sqldk.dll | 2017.140.3456.2 | 2737056 | 2. Sep-22 | 21:40 | x64 |
Sqldumper.exe | 2017.140.3456.2 | 139688 | 2. Sep-22 | 21:40 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 1500584 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3920288 | 2. Sep-22 | 21:42 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3218328 | 2. Sep-22 | 21:32 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3922848 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3826080 | 2. Sep-22 | 21:32 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 2093480 | 2. Sep-22 | 21:46 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 2039712 | 2. Sep-22 | 21:45 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3593624 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3601816 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 1447840 | 2. Sep-22 | 21:29 | x64 |
Sqlevn70.rll | 2017.140.3456.2 | 3790752 | 2. Sep-22 | 21:29 | x64 |
Sqlncli13e.dll | 2017.140.3456.2 | 2259360 | 2. Sep-22 | 21:40 | x64 |
Sqlos.dll | 2017.140.3456.2 | 20376 | 2. Sep-22 | 21:40 | x64 |
Sqlsortpdw.dll | 2016.130.9124.22 | 4347976 | 2. Sep-22 | 21:40 | x64 |
Sqltses.dll | 2017.140.3456.2 | 9730464 | 2. Sep-22 | 21:40 | x64 |
SQL Server 2017-sql_shared_mr
Dateiname | Dateiversion | Dateigröße | Datum | Zeit | Plattform |
---|---|---|---|---|---|
Smrdll.dll | 14.0.3456.2 | 18360 | 2. Sep-22 | 21:51 | x86 |
Sql_engine_core_shared_keyfile.dll | 2017.140.3456.2 | 94648 | 2. Sep-22 | 21:50 | x64 |
SQL Server 2017-sql_tools_extensions
Dateiname | Dateiversion | Dateigröße | Datum | Zeit | Plattform |
---|---|---|---|---|---|
Autoadmin.dll | 2017.140.3456.2 | 1442728 | 2. Sep-22 | 21:48 | x86 |
Dtaengine.exe | 2017.140.3456.2 | 198560 | 2. Sep-22 | 21:43 | x86 |
Dteparse.dll | 2017.140.3456.2 | 95136 | 2. Sep-22 | 21:43 | x86 |
Dteparse.dll | 2017.140.3456.2 | 105896 | 2. Sep-22 | 21:50 | x64 |
Dteparsemgd.dll | 2017.140.3456.2 | 77752 | 2. Sep-22 | 21:43 | x86 |
Dteparsemgd.dll | 2017.140.3456.2 | 83384 | 2. Sep-22 | 21:50 | x64 |
Dtepkg.dll | 2017.140.3456.2 | 111016 | 2. Sep-22 | 21:43 | x86 |
Dtepkg.dll | 2017.140.3456.2 | 132008 | 2. Sep-22 | 21:50 | x64 |
Dtexec.exe | 2017.140.3456.2 | 61856 | 2. Sep-22 | 21:43 | x86 |
Dtexec.exe | 2017.140.3456.2 | 69024 | 2. Sep-22 | 21:50 | x64 |
Dts.dll | 2017.140.3456.2 | 2545048 | 2. Sep-22 | 21:43 | x86 |
Dts.dll | 2017.140.3456.2 | 2995112 | 2. Sep-22 | 21:50 | x64 |
Dtscomexpreval.dll | 2017.140.3456.2 | 412064 | 2. Sep-22 | 21:43 | x86 |
Dtscomexpreval.dll | 2017.140.3456.2 | 469416 | 2. Sep-22 | 21:50 | x64 |
Dtsconn.dll | 2017.140.3456.2 | 396704 | 2. Sep-22 | 21:43 | x86 |
Dtsconn.dll | 2017.140.3456.2 | 494504 | 2. Sep-22 | 21:50 | x64 |
Dtshost.exe | 2017.140.3456.2 | 85408 | 2. Sep-22 | 21:48 | x86 |
Dtshost.exe | 2017.140.3456.2 | 100280 | 2. Sep-22 | 21:51 | x64 |
Dtslog.dll | 2017.140.3456.2 | 97176 | 2. Sep-22 | 21:43 | x86 |
Dtslog.dll | 2017.140.3456.2 | 114600 | 2. Sep-22 | 21:50 | x64 |
Dtsmsg150.dll | 2017.140.3456.2 | 535456 | 2. Sep-22 | 21:48 | x86 |
Dtsmsg150.dll | 2017.140.3456.2 | 539560 | 2. Sep-22 | 21:51 | x64 |
Dtspipeline.dll | 2017.140.3456.2 | 1054624 | 2. Sep-22 | 21:43 | x86 |
Dtspipeline.dll | 2017.140.3456.2 | 1262504 | 2. Sep-22 | 21:50 | x64 |
Dtspipelineperf150.dll | 2017.140.3456.2 | 36792 | 2. Sep-22 | 21:43 | x86 |
Dtspipelineperf150.dll | 2017.140.3456.2 | 42424 | 2. Sep-22 | 21:50 | x64 |
Dtuparse.dll | 2017.140.3456.2 | 74656 | 2. Sep-22 | 21:43 | x86 |
Dtuparse.dll | 2017.140.3456.2 | 83368 | 2. Sep-22 | 21:50 | x64 |
Dtutil.exe | 2017.140.3456.2 | 121768 | 2. Sep-22 | 21:43 | x86 |
Dtutil.exe | 2017.140.3456.2 | 142760 | 2. Sep-22 | 21:50 | x64 |
Exceldest.dll | 2017.140.3456.2 | 208792 | 2. Sep-22 | 21:43 | x86 |
Exceldest.dll | 2017.140.3456.2 | 254888 | 2. Sep-22 | 21:50 | x64 |
Excelsrc.dll | 2017.140.3456.2 | 224672 | 2. Sep-22 | 21:43 | x86 |
Excelsrc.dll | 2017.140.3456.2 | 276904 | 2. Sep-22 | 21:50 | x64 |
Flatfiledest.dll | 2017.140.3456.2 | 326552 | 2. Sep-22 | 21:43 | x86 |
Flatfiledest.dll | 2017.140.3456.2 | 380840 | 2. Sep-22 | 21:50 | x64 |
Flatfilesrc.dll | 2017.140.3456.2 | 338328 | 2. Sep-22 | 21:43 | x86 |
Flatfilesrc.dll | 2017.140.3456.2 | 393640 | 2. Sep-22 | 21:50 | x64 |
Foreachfileenumerator.dll | 2017.140.3456.2 | 74648 | 2. Sep-22 | 21:43 | x86 |
Foreachfileenumerator.dll | 2017.140.3456.2 | 90536 | 2. Sep-22 | 21:50 | x64 |
Microsoft.sqlserver.astasks.dll | 14.0.3456.2 | 106400 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.astasksui.dll | 14.0.3456.2 | 180632 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.chainer.infrastructure.dll | 14.0.3456.2 | 404392 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.chainer.infrastructure.dll | 14.0.3456.2 | 404384 | 2. Sep-22 | 21:50 | x86 |
Microsoft.sqlserver.configuration.sco.dll | 14.0.3456.2 | 2087856 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.configuration.sco.dll | 14.0.3456.2 | 2087848 | 2. Sep-22 | 21:50 | x86 |
Microsoft.sqlserver.manageddts.dll | 14.0.3456.2 | 608680 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.manageddts.dll | 14.0.3456.2 | 608680 | 2. Sep-22 | 21:51 | x86 |
Microsoft.sqlserver.management.integrationservices.dll | 14.0.3456.2 | 247200 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.management.integrationservicesenum.dll | 14.0.3456.2 | 49080 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.xevent.configuration.dll | 2017.140.3456.2 | 136088 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.xevent.configuration.dll | 2017.140.3456.2 | 146344 | 2. Sep-22 | 21:51 | x64 |
Microsoft.sqlserver.xevent.dll | 2017.140.3456.2 | 139680 | 2. Sep-22 | 21:47 | x86 |
Microsoft.sqlserver.xevent.dll | 2017.140.3456.2 | 153504 | 2. Sep-22 | 21:51 | x64 |
Msdtssrvrutil.dll | 2017.140.3456.2 | 84384 | 2. Sep-22 | 21:46 | x86 |
Msdtssrvrutil.dll | 2017.140.3456.2 | 97208 | 2. Sep-22 | 21:50 | x64 |
Msmgdsrv.dll | 2017.140.249.94 | 7306144 | 2. Sep-22 | 21:48 | x86 |
Oledbdest.dll | 2017.140.3456.2 | 208800 | 2. Sep-22 | 21:46 | x86 |
Oledbdest.dll | 2017.140.3456.2 | 255400 | 2. Sep-22 | 21:50 | x64 |
Oledbsrc.dll | 2017.140.3456.2 | 227232 | 2. Sep-22 | 21:46 | x86 |
Oledbsrc.dll | 2017.140.3456.2 | 283048 | 2. Sep-22 | 21:50 | x64 |
Sql_tools_extensions_keyfile.dll | 2017.140.3456.2 | 94648 | 2. Sep-22 | 21:50 | x64 |
Sqlresld.dll | 2017.140.3456.2 | 22968 | 2. Sep-22 | 21:47 | x86 |
Sqlresld.dll | 2017.140.3456.2 | 25016 | 2. Sep-22 | 21:51 | x64 |
Sqlresourceloader.dll | 2017.140.3456.2 | 23480 | 2. Sep-22 | 21:47 | x86 |
Sqlresourceloader.dll | 2017.140.3456.2 | 26552 | 2. Sep-22 | 21:51 | x64 |
Sqlscm.dll | 2017.140.3456.2 | 56248 | 2. Sep-22 | 21:47 | x86 |
Sqlscm.dll | 2017.140.3456.2 | 66976 | 2. Sep-22 | 21:51 | x64 |
Sqlsvc.dll | 2017.140.3456.2 | 129448 | 2. Sep-22 | 21:47 | x86 |
Sqlsvc.dll | 2017.140.3456.2 | 157112 | 2. Sep-22 | 21:51 | x64 |
Sqltaskconnections.dll | 2017.140.3456.2 | 146336 | 2. Sep-22 | 21:47 | x86 |
Sqltaskconnections.dll | 2017.140.3456.2 | 177064 | 2. Sep-22 | 21:51 | x64 |
Txdataconvert.dll | 2017.140.3456.2 | 247200 | 2. Sep-22 | 21:48 | x86 |
Txdataconvert.dll | 2017.140.3456.2 | 287144 | 2. Sep-22 | 21:51 | x64 |
Xe.dll | 2017.140.3456.2 | 589752 | 2. Sep-22 | 21:48 | x86 |
Xe.dll | 2017.140.3456.2 | 667576 | 2. Sep-22 | 21:53 | x64 |
Xmlrw.dll | 2017.140.3456.2 | 251816 | 2. Sep-22 | 21:48 | x86 |
Xmlrw.dll | 2017.140.3456.2 | 299424 | 2. Sep-22 | 21:53 | x64 |
Xmlrwbin.dll | 2017.140.3456.2 | 183712 | 2. Sep-22 | 21:48 | x86 |
Xmlrwbin.dll | 2017.140.3456.2 | 218552 | 2. Sep-22 | 21:53 | x64 |
Hinweise zu diesem Update
Voraussetzungen
Um dieses kumulative Updatepaket anzuwenden, müssen Sie SQL Server 2017 ausführen.
Informationen zum Neustarten
Möglicherweise müssen Sie den Computer neu starten, nachdem Sie dieses kumulative Updatepaket angewendet haben.
Registrierungsinformationen
Um einen der Hotfixes in diesem Paket zu verwenden, müssen Sie keine Änderungen an der Registrierung vornehmen.
Wichtige Hinweise
Dieser Artikel enthält auch wichtige Informationen zu den folgenden Situationen:
Pacemaker: Eine Verhaltensänderung erfolgt in Verteilungen, die die neueste verfügbare Version von Pacemaker verwenden. Entschärfungsmethoden werden bereitgestellt.
Abfragespeicher: Sie müssen dieses Skript ausführen, wenn Sie das Abfragespeicher verwenden und zuvor Microsoft SQL Server 2017 Kumulatives Update 2 (CU2) installiert haben.
Analysis Services CU-Buildversion
Ab Microsoft SQL Server 2017 stimmen die Analysis Services-Buildversionsnummer und sql Server Datenbank-Engine Buildversionsnummer nicht überein. Weitere Informationen finden Sie unter Überprüfen der kumulativen Updateversion von Analysis Services.
Kumulative Updates (CU)
Kumulative Updates (CU) sind jetzt im Microsoft Download Center verfügbar.
Nur das neueste CU, das für SQL Server 2017 veröffentlicht wurde, ist im Download Center verfügbar.
CU-Pakete für Linux sind unter https://packages.microsoft.com/.
Notiz
- Jedes neue CU enthält alle Fixes, die im vorherigen CU für die installierte Version von SQL Server enthalten waren.
- SQL Server-CUs sind auf den gleichen Ebenen wie Service Packs zertifiziert und sollten auf dem gleichen Konfidenzniveau installiert werden.
- Wir empfehlen eine fortlaufende, proaktive Installation von CUs, sobald sie gemäß diesen Richtlinien verfügbar werden:
- Historische Daten zeigen, dass eine erhebliche Anzahl von Supportfällen ein Problem betrifft, das bereits in einem veröffentlichten CU behoben wurde.
- CUs können einen Mehrwert über und über Hotfixes enthalten. Dazu gehören Unterstützung, Verwaltbarkeit und Zuverlässigkeitsupdates. - Es wird empfohlen, SQL Server-CUs zu testen, bevor Sie sie in Produktionsumgebungen bereitstellen.
Schrittmacherhinweis
WICHTIG
Alle Verteilungen (einschließlich RHEL 7.3 und 7.4), die das neueste verfügbare Pacemaker-Paket 1.1.18-11.el7 verwenden, führen eine Verhaltensänderung für die start-failure-is-fatal
Clustereinstellung ein, wenn der Wert lautet false
. Diese Änderung wirkt sich auf den Failoverworkflow aus. Wenn ein primäres Replikat ausfällt, wird für den Cluster ein Failover auf eines der verfügbaren sekundären Replikate erwartet. Stattdessen werden die Benutzer bemerken, dass der Cluster weiterhin versucht, das ausgefallene primäre Replikat zu starten. Wenn dieses primäre Replikat (aufgrund eines dauerhaften Ausfalls) nicht online geschaltet wird, führt der Cluster kein Failover zu einem anderen verfügbaren sekundären Replikat durch.
Dieses Problem betrifft alle SQL Server-Versionen, unabhängig von der kumulativen Updateversion, auf der sie sich befinden.
Verwenden Sie eine der folgenden Methoden, um das Problem zu beheben.
Methode 1
Führen Sie folgende Schritte aus:
Entfernen Sie die
start-failure-is-fatal
Außerkraftsetzung aus dem vorhandenen Cluster.# RHEL, Ubuntu pcs-Eigenschaft unset start-failure-is-fatal # oder pcs property set start-failure-is-fatal=true # SLES crm configure property start-failure-is-fatal=true
Verringern Sie den
cluster-recheck-interval
-Wert.# RHEL, Ubuntu pcs Property Set cluster-recheck-interval=<Xmin> # SLES crm configure property cluster-recheck-interval=<Xmin>
Fügen Sie die
failure-timeout
Metaeigenschaft zu jeder AG-Ressource hinzu.# RHEL, Ubuntu pcs resource update ag1 meta failure-timeout=60s # SLES crm configure edit ag1 # Fügen Sie im Text-Editor "meta failure-timeout=60s" nach allen "param' und vor "ops" hinzu
Notiz
Ersetzen Sie in diesem Code den Wert für <Xmin> entsprechend. Wenn ein Replikat ausfällt, versucht der Cluster, das Replikat in einem Intervall neu zu starten, das durch den Wert
failure-timeout
und den Wertcluster-recheck-interval
gebunden ist. Wennfailure-timeout
beispielsweise auf 60 Sekunden undcluster-recheck-interval
auf 120 Sekunden festgelegt ist, wird der Neustart in einem Intervall versucht, das größer als 60 Sekunden, aber kleiner als 120 Sekunden ist. Es wird empfohlen, einen Wert festzulegenfailure-timeout
60s
,cluster-recheck-interval
der größer als 60 Sekunden ist. Es wird empfohlen, dass Sie keinen kleinen Wert festlegencluster-recheck-interval
. Weitere Informationen finden Sie in der Pacemaker-Dokumentation oder wenden Sie sich an den Systemanbieter.
Methode 2
Wiederherstellen sie die Pacemaker-Version 1.1.16.
Abfragespeicher Hinweis
WICHTIG
Sie müssen dieses Skript ausführen, wenn Sie Abfragespeicher verwenden und von SQL Server 2017 Kumulatives Update 2 (CU2) direkt auf SQL Server 2017 Kumulatives Update 3 (CU3) oder ein späteres kumulatives Update aktualisieren. Sie müssen dieses Skript nicht ausführen, wenn Sie zuvor SQL Server 2017 Kumulatives Update 3 (CU3) oder ein höheres kumulatives SQL Server 2017-Update installiert haben.
SET NOCOUNT ON;
DROP TABLE IF EXISTS #tmpUserDBs;
SELECT [database_id], 0 AS [IsDone]
INTO #tmpUserDBs
FROM master.sys.databases
WHERE [database_id] > 4
AND [state] = 0 -- must be ONLINE
AND is_read_only = 0 -- cannot be READ_ONLY
AND [database_id] NOT IN (SELECT dr.database_id FROM sys.dm_hadr_database_replica_states dr -- Except all local Always On secondary replicas
INNER JOIN sys.dm_hadr_availability_replica_states rs ON dr.group_id = rs.group_id
INNER JOIN sys.databases d ON dr.database_id = d.database_id
WHERE rs.role = 2 -- Is Secondary
AND dr.is_local = 1
AND rs.is_local = 1)
DECLARE @userDB sysname;
WHILE (SELECT COUNT([database_id]) FROM #tmpUserDBs WHERE [IsDone] = 0) > 0
BEGIN
SELECT TOP 1 @userDB = DB_NAME([database_id]) FROM #tmpUserDBs WHERE [IsDone] = 0
-- PRINT 'Working on database ' + @userDB
EXEC ('USE [' + @userDB + '];
DECLARE @clearPlan bigint, @clearQry bigint;
IF EXISTS (SELECT [actual_state] FROM sys.database_query_store_options WHERE [actual_state] IN (1,2))
BEGIN
IF EXISTS (SELECT plan_id FROM sys.query_store_plan WHERE engine_version = ''14.0.3008.27'')
BEGIN
DROP TABLE IF EXISTS #tmpclearPlans;
SELECT plan_id, query_id, 0 AS [IsDone]
INTO #tmpclearPlans
FROM sys.query_store_plan WHERE engine_version = ''14.0.3008.27''
WHILE (SELECT COUNT(plan_id) FROM #tmpclearPlans WHERE [IsDone] = 0) > 0
BEGIN
SELECT TOP 1 @clearPlan = plan_id, @clearQry = query_id FROM #tmpclearPlans WHERE [IsDone] = 0
EXECUTE sys.sp_query_store_unforce_plan @clearQry, @clearPlan;
EXECUTE sys.sp_query_store_remove_plan @clearPlan;
UPDATE #tmpclearPlans
SET [IsDone] = 1
WHERE plan_id = @clearPlan AND query_id = @clearQry
END;
PRINT ''- Cleared possibly affected plans in database [' + @userDB + ']''
END
ELSE
BEGIN
PRINT ''- No affected plans in database [' + @userDB + ']''
END
END
ELSE
BEGIN
PRINT ''- Query Store not enabled in database [' + @userDB + ']''
END')
UPDATE #tmpUserDBs
SET [IsDone] = 1
WHERE [database_id] = DB_ID(@userDB)
END
Hybridumgebungsbereitstellung
Wenn Sie ein Update in einer Hybridumgebung bereitstellen (z. B. AlwaysOn, Replikation, Cluster und Spiegelung), empfehlen wir, dass Sie sich vor der Bereitstellung des Updates auf die folgenden Artikel beziehen:
Notiz
Wenn Sie den rollierenden Updateprozess nicht verwenden möchten, führen Sie die folgenden Schritte aus, um ein Update anzuwenden:
- Installieren Sie das Update auf dem passiven Knoten.
- Installieren Sie das Update auf dem aktiven Knoten (erfordert einen Dienstneustart).
Notiz
Wenn Sie Always On zusammen mit dem SSISDB-Katalog aktiviert haben, lesen Sie die Informationen zu SSIS mit Always On zum Anwenden eines Updates in diesen Umgebungen.
Sprachunterstützung
SQL Server-CUs sind derzeit mehrsprachig. Daher ist dieses CU-Paket nicht spezifisch für eine Sprache. Sie gilt für alle unterstützten Sprachen.
Komponenten (Features) wurden aktualisiert.
Ein CU-Paket enthält alle verfügbaren Updates für alle SQL Server 2017-Komponenten (Features). Das kumulative Updatepaket aktualisiert jedoch nur die Komponenten, die derzeit in der SQL Server-Instanz installiert sind, die Sie für den Dienst auswählen. Wenn ein SQL Server-Feature (z. B. Analysis Services) der Instanz hinzugefügt wird, nachdem dieses CU angewendet wurde, müssen Sie dieses CU erneut anwenden, um das neue Feature auf dieses CU zu aktualisieren.
Unterstützung für dieses Update
Wenn andere Probleme auftreten oder eine Problembehandlung erforderlich ist, müssen Sie möglicherweise eine Serviceanfrage erstellen. Die üblichen Supportkosten gelten für zusätzliche Supportfragen und Für Probleme, die sich nicht für dieses spezifische kumulative Updatepaket qualifizieren. Eine vollständige Liste der Microsoft-Kundendienst- und Supporttelefonnummern oder zum Erstellen einer separaten Serviceanfrage erhalten Sie auf der Microsoft-Supportwebsite.
So deinstallieren Sie dieses Update
So deinstallieren Sie dieses Update unter Windows
- Öffnen Sie in Systemsteuerung das Element "Programme und Features", und wählen Sie dann "Installierte Updates anzeigen" aus.
- Suchen Sie den Eintrag, der diesem kumulativen Updatepaket unter SQL Server 2017 entspricht.
- Halten Sie den Eintrag gedrückt (oder klicken Sie mit der rechten Maustaste darauf), und wählen Sie dann "Deinstallieren" aus.
So deinstallieren Sie dieses Update unter Linux
Um dieses CU unter Linux zu deinstallieren, müssen Sie das Paket auf die vorherige Version zurücksetzen. Weitere Informationen zum Zurücksetzen der Installation finden Sie unter Rollback SQL Server.
Informationen zum Haftungsausschluss von Drittanbietern
Die in diesem Artikel erläuterten Produkte von Drittanbietern werden von Unternehmen hergestellt, die unabhängig von Microsoft sind. Microsoft übernimmt keine garantie- oder implizite oder anderweitige Garantie hinsichtlich der Leistung oder Zuverlässigkeit dieser Produkte.
References
- Ankündigung von Updates für das inkrementelle SQL Server Servicing Model (ISM)
- SQL Server Service Packs werden ab SQL Server 2017 nicht mehr unterstützt
- Ermitteln, welche Version und Welche Edition von SQL Server Datenbank-Engine ausgeführt wird
- Wartungsmodelle für SQL Server
- Benennungsschema- und Fixbereichsbeschreibungen für SQL Server-Softwareupdatepakete
- Erläuterung der Standardterminologie, die zur Beschreibung von Updates von Microsoft-Software verwendet wird