<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>SQL Server Engine topics</title>
    <link>https://techcommunity.microsoft.com/t5/sql-server-engine/bd-p/SQL-Server-Engine</link>
    <description>SQL Server Engine topics</description>
    <pubDate>Sun, 12 Apr 2026 21:25:55 GMT</pubDate>
    <dc:creator>SQL-Server-Engine</dc:creator>
    <dc:date>2026-04-12T21:25:55Z</dc:date>
    <item>
      <title>SQL installation error .
Exit code 2068052377</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/sql-installation-error-exit-code-2068052377/m-p/4417018#M394</link>
      <description>&lt;P&gt;Error Description:&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 17:22:32 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/sql-installation-error-exit-code-2068052377/m-p/4417018#M394</guid>
      <dc:creator>RionKhan</dc:creator>
      <dc:date>2025-05-23T17:22:32Z</dc:date>
    </item>
    <item>
      <title>Simple SQL Update Query behaviour changed based on table volume.</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/simple-sql-update-query-behaviour-changed-based-on-table-volume/m-p/4367831#M390</link>
      <description>&lt;P&gt;Here is an interesting case for you, please read patiently to understand the simple update with strange behaviour.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a two table with very minimal records and i am joining with referential integrity to update the value from 1st table to the second table's column. the update Query behaved differently when records increased over a time. its very simple update Query and the results are very strange. I will brief the scenario step by step as follow.&lt;/P&gt;&lt;P&gt;Table 1: Warehouse&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jan 2025 00:24:27 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/simple-sql-update-query-behaviour-changed-based-on-table-volume/m-p/4367831#M390</guid>
      <dc:creator>murusolai</dc:creator>
      <dc:date>2025-01-18T00:24:27Z</dc:date>
    </item>
    <item>
      <title>Cleanup of auto created statistics</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/cleanup-of-auto-created-statistics/m-p/4357270#M373</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;during annual database checkup i found that there were a lot of auto created statistics, which weren't used.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems that DBMS doesn't cleanup unused auto created statistic on his own.&lt;/P&gt;&lt;P&gt;i guess i can drop them with the following query:&lt;/P&gt;&lt;P&gt;DROP STATISTICS Schema.TableName._WA_Sys_XXXXXXXXXXXXXXXXXXXX&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But i am still thinking whether it is safe, about impact on the performance.&lt;/P&gt;&lt;P&gt;Has anybody had any experience with that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 13:19:57 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/cleanup-of-auto-created-statistics/m-p/4357270#M373</guid>
      <dc:creator>KarolFerek</dc:creator>
      <dc:date>2024-12-13T13:19:57Z</dc:date>
    </item>
    <item>
      <title>Need help SQL query performance issue</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/need-help-sql-query-performance-issue/m-p/4356397#M360</link>
      <description>&lt;P&gt;I am looking to help optimize the below select statement&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created supporting indexes and updated statistics , the same query is taking 2sec in one database ( note that same table structure and same data on both tables ) but another database it's taking 95sec on the same server.&lt;/P&gt;&lt;P&gt;I compared the execution plan for both 2sec vs 95sec it's exactly matching . Any clue on why it's running faster on one database but taking lot of time on other database.&lt;/P&gt;&lt;P&gt;These tables not heavily fragmented and stats are up to date on both database.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These tables contains 200million rows. Another important note is that indexes is not playing any role here , with or with out indexes query is taking 95sec&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;declare @v_vch_cut_off_date date =cast( getdate()-10 as date)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Select&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ztr.work_day,tlms.work_day,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ztr.from_zone,zl.travel_zone_name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ztr.from_business_unit,tlms.business_unit,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ztr.from_process,tlms.process,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ztr.from_item_category,tlms.item_category&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;FROM dbo.t_zone_travel_report(nolock) ztr&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;LEFT JOIN dbo.t_lms_process_time (NOLOCK) tlms&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ON ztr.wh_id=tlms.wh_id&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AND ztr.employee_id=tlms.employee_id&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AND ztr.start_tran_datetime &amp;gt;= tlms.start_tran_datetime AND ztr.start_tran_datetime &amp;lt; tlms.next_tran_startdatetime&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;-- AND ztr.log_id &amp;gt;= tlms.log_id AND (ztr.log_id &amp;lt; tlms.next_log_id OR tlms.next_log_id=999999999)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AND tlms.work_day &amp;gt;= @v_vch_cut_off_date&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;LEFT JOIN dbo.t_travel_zones_locations (NOLOCK) zl&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ON ztr.wh_id=zl.wh_id&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AND ztr.from_location=zl.location_id&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;WHERE (ztr.work_day &amp;gt;= @v_vch_cut_off_date OR ISNULL(ztr.work_day,'') = '' )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;AND (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ISNULL(ztr.from_zone,'') &amp;lt;&amp;gt; ISNULL(zl.travel_zone_name,'')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;OR ISNULL(ztr.from_business_unit,'') &amp;lt;&amp;gt; ISNULL(tlms.business_unit,'')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;OR ISNULL(ztr.from_process,'') &amp;lt;&amp;gt; ISNULL(tlms.process,'')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;);&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 14:21:30 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/need-help-sql-query-performance-issue/m-p/4356397#M360</guid>
      <dc:creator>Lakshmikiranreddy</dc:creator>
      <dc:date>2024-12-11T14:21:30Z</dc:date>
    </item>
    <item>
      <title>Catch Error in a SQL Server Logon Trigger</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/catch-error-in-a-sql-server-logon-trigger/m-p/4354780#M356</link>
      <description>&lt;P&gt;I have written a Logon trigger in a SQL Server to control logon authorization.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang=""&gt;ALTER TRIGGER [LOG_TRG_01]
ON ALL SERVER WITH EXECUTE AS 'SA'
FOR LOGON
AS

BEGIN

if ORIGINAL_LOGIN() = 'sa'
begin
return;
end;

if ORIGINAL_LOGIN() = 'OMEGACAEVDEV1'
begin
-- not allowed to logon
rollback;
end;

-- Insert Trail
EXEC [OmegaCoreAudit].[OMEGACA].[P_ACC_UNF_TRAIL]
0, 'trail_details', 'ip', 'server', 'db', 0 ;

END 
GO&lt;/LI-CODE&gt;&lt;P&gt;It does (as expected):&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;OMEGACAEVDEV1 is not allowed to logon&lt;/LI&gt;&lt;LI&gt;OMEGACAEVDEV2 is allowed to logon&lt;/LI&gt;&lt;LI&gt;An audit event is inserted by proc P_ACC_UNF_TRAIL in a table for both users.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;All three above I want to stay this way !&lt;/P&gt;&lt;P&gt;But I need to have error handling in it, so that in case of whatever error the login is allowed to login - but keeping a record on another table named SYS_ERROR_LOG (with error details). In this trigger I have intentionally provoked an error by "select 10/0"&lt;/P&gt;&lt;P&gt;The new trigger is:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang=""&gt;ALTER TRIGGER [LOG_TRG_02]
ON ALL SERVER WITH EXECUTE AS 'SA'
FOR LOGON
AS

BEGIN

BEGIN TRY

if ORIGINAL_LOGIN() = 'sa'
begin
return;
end;

--provoke error
select 10/0;

if ORIGINAL_LOGIN() = 'OMEGACAEVDEV1'
begin
-- not allowed to logon
rollback;
end;

-- Insert Trail
EXEC [OmegaCoreAudit].[OMEGACA].[P_ACC_UNF_TRAIL]
0, 'trail_details', 'ip', 'server', 'db', 0 ;

END TRY

BEGIN CATCH

Insert into OmegaCoreAudit.OMEGACA.SYS_ERROR_LOG 
([LOGIN_USER_NAME], [DB_USER_NAME], [USERHOST], [IP_ADDRESS], [OS_USER], [BG_JOB_ID], [ERROR_DATA])
values
('LOGIN_NAME', 'USER_NAME', 'USER_HOST', 'IP', NULL, NULL, 'ERROR_MESSAGE'); 

END CATCH

END 
GO&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;In the above code "if ORIGINAL_LOGIN() = 'OMEGACAEVDEV1'" represents a simplified version of a wider authorization process.&lt;/P&gt;&lt;P&gt;Problem:&lt;/P&gt;&lt;P&gt;CATCH is not working.&lt;BR /&gt;Both users are not allowed to logon ("Logon failed for login '[user]' due to trigger execution")&lt;BR /&gt;No record is written on table SYS_ERROR_LOG. I was expecting one for each user.&lt;/P&gt;&lt;P&gt;What can I do to fix this problem?&lt;/P&gt;&lt;P&gt;best regards&lt;BR /&gt;Altin&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2024 19:46:26 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/catch-error-in-a-sql-server-logon-trigger/m-p/4354780#M356</guid>
      <dc:creator>akaraulli</dc:creator>
      <dc:date>2024-12-05T19:46:26Z</dc:date>
    </item>
    <item>
      <title>百家乐AI网址伙伴微【70411382】</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/%E7%99%BE%E5%AE%B6%E4%B9%90ai%E7%BD%91%E5%9D%80%E4%BC%99%E4%BC%B4%E5%BE%AE-70411382/m-p/4285096#M346</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;FONT&gt;为了充分实现 AI 为您的组织带来的好处，您的员工需要知道如何使用 AI 驱动的工具和服务以及如何将它们集成到现有的工作流程中。正如&lt;/FONT&gt;&lt;/SPAN&gt;&lt;A href="https://www3.weforum.org/docs/WEF_Future_of_Jobs_2023.pdf" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;&lt;FONT&gt;世界经济论坛《2023 年就业前景》&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&lt;FONT&gt;报告所解释的那样，“培训员工利用 AI 和大数据在未来五年内位列公司技能培训优先事项的第三位，42% 的受访公司将把这列为优先事项。”无论您为员工建立了完善的培训框架，还是刚刚开始建立技能培养流程，验证您的培训计划是否与最新的技术技能保持同步都可能是一个挑战。&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/credentials/support/partners-value?wt.mc_id=learnmicrosoftai_aiblogseries_blog_wwl_3" target="_blank" rel="noopener noreferrer"&gt;&lt;SPAN&gt;&lt;FONT&gt;Microsoft 培训服务合作伙伴 (TSP)&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&lt;FONT&gt;可以帮助您的员工快速培养这些尖端技能。TSP 教授可直接从课堂转移到工作场所的 IT 技能，并且&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT&gt;提供：&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;FONT&gt;在微软 AI 应用和服务方面拥有深厚的技术专长和经验。&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;FONT&gt;根据您组织的需求和目标进行技能评估和定制培训计划。&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://learn.microsoft.com/credentials/certifications/mct-certification?wt.mc_id=learnmicrosoftai_aiblogseries_blog_wwl_3" target="_blank" rel="noopener noreferrer"&gt;&lt;SPAN&gt;&lt;FONT&gt;由Microsoft 认证培训师 (MCT)&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;FONT&gt;&lt;SPAN&gt;教授的深入培训解决方案，以 Microsoft 官方课件和&lt;/SPAN&gt;&lt;A href="https://learn.microsoft.com/credentials/browse/?wt.mc_id=learnmicrosoftai_aiblogseries_blog_wwl_3" target="_blank" rel="noopener noreferrer"&gt;&lt;SPAN&gt;Microsoft Credentials&lt;/SPAN&gt;&lt;/A&gt;&lt;/FONT&gt;&lt;SPAN&gt;&lt;FONT&gt;为中心，使用&lt;/FONT&gt;&lt;/SPAN&gt;&lt;FONT&gt;&lt;A href="https://learn.microsoft.com/training/?wt.mc_id=learnmicrosoftai_aiblogseries_blog_wwl_3" target="_blank" rel="noopener noreferrer"&gt;&lt;SPAN&gt;Microsoft Learn&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;的内容&lt;/SPAN&gt;&lt;SPAN&gt;。&lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;FONT&gt;自主学习和教师指导的课程，以虚拟和面对面的方式进行，充分利用当地市场专业知识、视频、交互式实验室和 Microsoft 认证准备资源。&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;&lt;EM&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;FONT&gt;优先考虑人工智能训练至关重要&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;FONT&gt;世界各地的 TSP 已帮助&lt;/FONT&gt;&lt;/SPAN&gt;&lt;FONT&gt;&lt;SPAN class=""&gt;无数组织&lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN class=""&gt;&lt;FONT&gt;的员工&lt;/FONT&gt;&lt;/SPAN&gt;&lt;FONT&gt;&lt;SPAN class=""&gt;提高 AI 和其他 Microsoft 技术的技能。查看&lt;/SPAN&gt;&lt;SPAN class=""&gt;Skillsoft&lt;/SPAN&gt;&lt;SPAN class=""&gt;和&lt;/SPAN&gt;&lt;SPAN class=""&gt;Sulava&lt;/SPAN&gt;&lt;SPAN class=""&gt;的&lt;/SPAN&gt;&lt;SPAN class=""&gt;以下&lt;/SPAN&gt;&lt;SPAN class=""&gt;故事&lt;/SPAN&gt;&lt;SPAN class=""&gt;，&lt;/SPAN&gt;&lt;SPAN class=""&gt;了解&lt;/SPAN&gt;&lt;SPAN class=""&gt;TSP 如何&lt;/SPAN&gt;&lt;SPAN class=""&gt;帮助&lt;/SPAN&gt;&lt;SPAN class=""&gt;学习者&lt;/SPAN&gt;&lt;SPAN class=""&gt;提高 AI&lt;/SPAN&gt;&lt;SPAN class=""&gt;技能&lt;/SPAN&gt;&lt;SPAN class=""&gt;。&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;&lt;FONT&gt;Skillsoft：人工智能技能培训的全球性机构&lt;/FONT&gt;&lt;/H2&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT&gt;TSP&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;A href="https://www.skillsoft.com/" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;&lt;FONT&gt;Skillsoft 的&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&lt;FONT&gt;业务遍布全球，为 60% 以上的财富 1000 强企业提供服务，客户遍布 160 个国家或地区。Skillsoft 与 Microsoft 合作开发了&lt;/FONT&gt;&lt;/SPAN&gt;&lt;A href="https://www.skillsoft.com/ai-accelerator#index" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;&lt;FONT&gt;AI Skill Accelerator&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&lt;FONT&gt;计划，这是一种结合课程和培训的方法，旨在让员工做好准备，充分利用 AI 工具，包括 Microsoft Copilot 和 Azure OpenAI Service。作为 Copilot 的“零号客户”，Skillsoft 培训师非常了解如何帮助客户提高技能，因为他们已经通过相同的学习经历建立了自己的技能。&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT&gt;这项综合计划旨在加速贵组织将 AI 功能集成到业务中的能力，并使您的员工能够开发可直接应用于工作的实用 AI 技能。它包括面向业务客户的生成式 AI 工具、&lt;/FONT&gt;&lt;/SPAN&gt;&lt;A href="https://www.skillsoft.com/blog/how-practice-makes-perfect-with-skillsofts-caisy-conversation-ai-simulator" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;&lt;FONT&gt;Skillsoft CAISY™ 对话 AI 模拟器&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&lt;FONT&gt;、技能基准评估和可自定义的内容。Skillsoft 可以提升贵组织在 Microsoft 的 AI 应用和解决方案（包括 Copilot 和 Azure AI）方面的技能。&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="lia-align-justify"&gt;&lt;I&gt;&lt;SPAN&gt;&lt;FONT&gt;“我们最近在 Skillsoft 采用了 Microsoft Copilot，并启动了一项多步骤的 Copilot 支持计划，以帮助所有团队成员熟悉 Copilot，并了解该技术如何提高他们的日常工作效率。随着我们推进 AI 转型，我们正在利用我们的 AI 技能加速器计划来提升我们团队的技能，这证明了结构化支持计划的重要性，以充分利用 Copilot 功能和其他新兴的 GenAI 工具。”&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;—Orla Daly，Skillsoft 首席信息官 (CIO)&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT&gt;了解 Skillsoft 如何&lt;/FONT&gt;&lt;/SPAN&gt;&lt;A href="https://www.skillsoft.com/blog/skillsoft-ai-skill-accelerator" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;&lt;FONT&gt;加速整个组织的 AI 技能建设的&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&lt;FONT&gt;更多信息。&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;&lt;FONT&gt;Sulava：人工智能技能培养的先驱&lt;/FONT&gt;&lt;/H2&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT&gt;总部位于芬兰的&lt;/FONT&gt;&lt;/SPAN&gt;&lt;A href="https://sulava.com/" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;&lt;FONT&gt;Sulava&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&lt;FONT&gt;是一家领先的 TSP，也是帮助组织采用 AI 的先驱。Sulava 与科技和工业公司 Indutrade 合作，为 Indutrade 员工提供持续的培训课程。在六年的时间里，Sulava 举办了 180 多场此类课程，涵盖了 Microsoft 的 AI 应用和服务、Office 365 应用和 Microsoft Power Platform 等主题，充分利用了现代工作方法和工具以及网络安全。培训课程满足了当前的技能需求，从而提高了效率和工作满意度，并减少了支持单量。&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT&gt;最近，合作范围扩大到包括 Sulava 的 Copilot 采用服务，促进 Microsoft 365 Copilot 的实施并提供持续培训，以确保 Indutrade 及其子公司能够有效地使用人工智能并更高效地工作。&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-justify"&gt;&lt;I&gt;&lt;SPAN&gt;&lt;FONT&gt;“我认为我们选择 Sulava 提供这项服务非常重要，因为指望人们自己弄清楚如何使用人工智能太过分了。工作转型需要付出很多努力，需要支持和培训。&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;SPAN&gt;&lt;FONT&gt;&amp;nbsp;”&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; —Jarmo Kaijanen，Indutrade 首席信息官 (CIO)&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Sat, 02 Nov 2024 06:52:48 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/%E7%99%BE%E5%AE%B6%E4%B9%90ai%E7%BD%91%E5%9D%80%E4%BC%99%E4%BC%B4%E5%BE%AE-70411382/m-p/4285096#M346</guid>
      <dc:creator>70411382645</dc:creator>
      <dc:date>2024-11-02T06:52:48Z</dc:date>
    </item>
    <item>
      <title>Connect Remote SQL server with SSMS issue</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/connect-remote-sql-server-with-ssms-issue/m-p/4282762#M344</link>
      <description>&lt;P&gt;I am trying to connect the SQL Server Remote user with SSMS but I face the below issue&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TITLE: Connect to Server&lt;BR /&gt;------------------------------&lt;/P&gt;&lt;P&gt;Cannot connect to "blank_for_security"&lt;/P&gt;&lt;P&gt;------------------------------&lt;BR /&gt;ADDITIONAL INFORMATION:&lt;/P&gt;&lt;P&gt;A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 53)&lt;/P&gt;&lt;P&gt;For help, click: &lt;A href="https://docs.microsoft.com/sql/relational-databases/errors-events/mssqlserver-53-database-engine-error" target="_blank"&gt;https://docs.microsoft.com/sql/relational-databases/errors-events/mssqlserver-53-database-engine-error&lt;/A&gt;&lt;/P&gt;&lt;P&gt;------------------------------&lt;/P&gt;&lt;P&gt;The network path was not found&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 09:44:27 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/connect-remote-sql-server-with-ssms-issue/m-p/4282762#M344</guid>
      <dc:creator>Yogesh_05</dc:creator>
      <dc:date>2024-10-30T09:44:27Z</dc:date>
    </item>
    <item>
      <title>SQL server connectivity issue</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/sql-server-connectivity-issue/m-p/4282607#M343</link>
      <description>&lt;P&gt;I am trying to connect to sqlserver using sqlcmd command line tool, but its failing.&lt;BR /&gt;Error logs on server side:&lt;BR /&gt;&lt;SPAN&gt;Date Source Message 10/29/2024 3:43:08 PM Logon Length specified in network packet payload did not match number of bytes read; the connection has been closed. Please contact the vendor of the client library. [CLIENT: 48.216.198.190] 10/29/2024 3:43:08 PM Logon Error: 17836, Severity: 20, State: 17.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;From client side&lt;BR /&gt;sqlcmd -S 3.14.36.201 -U svc_lightbeam_temp -P &amp;lt;&amp;gt; -d master&lt;BR /&gt;Sqlcmd: Error: Microsoft ODBC Driver 17 for SQL Server : TCP Provider: Error code 0x2746.&lt;BR /&gt;Sqlcmd: Error: Microsoft ODBC Driver 17 for SQL Server : Client unable to establish connection.&lt;BR /&gt;&lt;BR /&gt;sqlserver details&lt;BR /&gt;&lt;STRONG&gt;Microsoft SQL Server 2016 (SP1-CU8) (KB4077064) - 13.0.4474.0 (X64)&amp;nbsp; Feb 24 2018 13:53:17&amp;nbsp; Copyright (c) Microsoft Corporation Web Edition (64-bit) on Windows Server 2012 R2 Standard 6.3 &amp;lt;X64&amp;gt; (Build 9600: ) (Hypervisor)&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 05:57:44 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/sql-server-connectivity-issue/m-p/4282607#M343</guid>
      <dc:creator>kaifkhan3007</dc:creator>
      <dc:date>2024-10-30T05:57:44Z</dc:date>
    </item>
    <item>
      <title>Issues in Installing SQL server and SSMS</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/issues-in-installing-sql-server-and-ssms/m-p/4254533#M337</link>
      <description>&lt;P&gt;Please, I'm new to SQL, and I'm having issues installing SQL server and SSMS into my system. I've tried virtually all the troubleshooting options that I saw on YouTube and yet, I'm not making any headway. Please, what next should I do?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2024 04:13:25 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/issues-in-installing-sql-server-and-ssms/m-p/4254533#M337</guid>
      <dc:creator>ekechi2005</dc:creator>
      <dc:date>2024-09-25T04:13:25Z</dc:date>
    </item>
    <item>
      <title>Replication Snapshot not getting generated in MSSQL 2022 Standard Edition</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/replication-snapshot-not-getting-generated-in-mssql-2022/m-p/4252361#M335</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I am trying to setup replication of MSSQL database hosted on Windows (Master) to database hosted on Ubuntu (Slave). After configuring the Publisher agent on Master, when I try to run agent to generate snapshot and check status, it shows "Starting agent". It keeps on running endlessly even though the size of my test database is very small.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have checked that master server is not having any heavy processes running on it. Has anyone faced similar issue as well and resolved it then please guide.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards.&lt;BR /&gt;Aditya.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2024 07:48:03 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/replication-snapshot-not-getting-generated-in-mssql-2022/m-p/4252361#M335</guid>
      <dc:creator>AdityaGaur</dc:creator>
      <dc:date>2024-09-23T07:48:03Z</dc:date>
    </item>
    <item>
      <title>Powershell script running in SQL task</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/powershell-script-running-in-sql-task/m-p/4251354#M334</link>
      <description>&lt;P&gt;Hi, what I need to do is to be able to run a powershell script from a sql task. This script contains secrets that were saved with a specific user account, this is necessary since the script makes connections to the Internet and must be authenticated. From a Windows scheduled task I managed to get it to work but not from a SQL task. Is there something that needs to be taken into account for this to work??&lt;/P&gt;&lt;P&gt;Thank you very much!&lt;/P&gt;</description>
      <pubDate>Fri, 20 Sep 2024 17:51:50 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/powershell-script-running-in-sql-task/m-p/4251354#M334</guid>
      <dc:creator>German_Lagomarsino</dc:creator>
      <dc:date>2024-09-20T17:51:50Z</dc:date>
    </item>
    <item>
      <title>SQL Server audit logs incorrect info on column object_name</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/sql-server-audit-logs-incorrect-info-on-column-object-name/m-p/4247352#M333</link>
      <description>&lt;P&gt;Hi, during an audit check on database events, i have noticed that sometimes on DDL events, when temp tables are mentioned, sql server 2017 logs incorrect information on columns schema_name and&amp;nbsp; object_name and the statement column proves this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Moreover, on the two columns the info for the object on which the DDL was applied, is taken randomly, it may show the first table, or the second, making this difficult to prove the actions in case of audits:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Sadly, i haven't found this reported anywhere..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Sep 2024 13:26:12 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/sql-server-audit-logs-incorrect-info-on-column-object-name/m-p/4247352#M333</guid>
      <dc:creator>GabiSarbu</dc:creator>
      <dc:date>2024-09-17T13:26:12Z</dc:date>
    </item>
    <item>
      <title>Trace sql server shutdown steps</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/trace-sql-server-shutdown-steps/m-p/4238651#M332</link>
      <description>&lt;P&gt;Is there any documented / undocumented trace flag to trace low level steps of SQL server shutdown, like SQL server receiving shutdown request (if possibile details about the soruce) , checkpoints&amp;nbsp; and finaally shutting down ?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2024 16:14:33 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/trace-sql-server-shutdown-steps/m-p/4238651#M332</guid>
      <dc:creator>Nitztrace</dc:creator>
      <dc:date>2024-09-06T16:14:33Z</dc:date>
    </item>
    <item>
      <title>百家乐客服【微QGY889889】</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/%E7%99%BE%E5%AE%B6%E4%B9%90%E5%AE%A2%E6%9C%8D-%E5%BE%AEqgy889889/m-p/4224328#M328</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SQL Server 是一个关系数据库管理系统。它最初是由Microsoft Sybase 和Ashton-Tate三家公司共同开发的，于&lt;BR /&gt;Microsoft SQL Server&lt;BR /&gt;Microsoft SQL Server&lt;BR /&gt;1988 年推出了第一个OS/2 版本。在Windows NT 推出后，Microsoft与Sybase 在SQL Server 的开发上就分道扬镳了，Microsoft 将SQL Server 移植到Windows NT系统上，专注于开发推广SQL Server 的Windows NT 版本。Sybase 则较专注于SQL Server在UNIX 操作系统上的应用。&lt;/P&gt;&lt;P&gt;SQL Server 2000 是Microsoft 公司推出的SQL Server 数据库管理系统，该版本继承了SQL Server 7.0 版本的优点，同时又比它增加了许多更先进的功能。具有使用方便可伸缩性好与相关软件集成程度高等优点，可跨越从运行Microsoft Windows 98 的膝上型电脑到运行Microsoft Windows 2000 的大型多处理器的服务器等多种平台使用。&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SQL Server 2005&lt;/P&gt;&lt;P&gt;SQL Server 2005 是一个全面的数据库平台，使用集成的商业智能 (BI) 工具提供了企业级的数据管理。SQL Server 2005 数据库引擎为关系型数据和结构化数据提供了更安全可靠的存储功能，使您可以构建和管理用于业务的高可用和高性能的数据应用程序。&lt;/P&gt;&lt;P&gt;SQL Server 2005 数据引擎是本企业数据管理解决方案的核心。此外 SQL Server 2005 结合了分析、报表、集成和通知功能。这使您的企业可以构建和部署经济有效的 BI 解决方案，帮助您的团队通过记分卡、Dashboard、Web services 和移动设备将数据应用推向业务的各个领域。&lt;/P&gt;&lt;P&gt;与 Microsoft Visual Studio、Microsoft Office System 以及新的开发工具包（包括 Business Intelligence Development Studio）的紧密集成使 SQL Server 2005 与众不同。无论您是开发人员、数据库管理员、信息工作者还是决策者，SQL Server 2005 都可以为您提供创新的解决方案，帮助您从数据中更多地获益。&lt;/P&gt;&lt;P&gt;SQL Server 2008&lt;/P&gt;&lt;P&gt;SQL Server 2008是一个重大的产品版本，它推出了许多新的特性和关键的改进，使得它成为至今为止的最强大&lt;/P&gt;&lt;P&gt;和最全面的SQL Server版本。这篇文章详细介绍了Microsoft SQL Server 2008中的新的特性、优点和功能。&lt;/P&gt;&lt;P&gt;微软的这个数据平台满足这些数据爆炸和下一代数据驱动应用程序的需求，支持数据平台愿景：关键任务企业数据平台、动态开发、关系数据和商业智能。&lt;/P&gt;&lt;P&gt;SQL Server的愿景&lt;/P&gt;&lt;P&gt;许多因素致使产生了信息存储爆炸。有了新的信息类型，例如图片和视频的数字化，和从RFID标签获得的传感器信息，公司的数字信息的数量在急剧增长。遵守规范和全球化的发展要求信息存储的安全性和在任何时候都可用。同时，磁盘存储的成本显著地降低了，使得公司投资的每一美元可以存储更多的数据。用户必须快速的在大量的数据中找到相关的信息。此外，他们想在任何设备上使用这个信息，并且计划每天使用，例如Microsoft Office系统应用程序。对数据爆炸和用户期望值的增加的管理为公司制造了许多挑战。&lt;/P&gt;&lt;P&gt;Microsoft 数据平台愿景提供了一个解决方案来满足这些需求，这个解决方案就是公司可以使用存储和管理许多数据类型，包括XML、e-mail、时间/日历、文件、文档、地理等等，同时提供一个丰富的服务集合来与数据交互作用：搜索、查询、数据分析、报表、数据整合，和强大的同步功能。用户可以访问从创建到存档于任何设备的信息，从桌面到移动设备的信息&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2024 05:31:07 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/%E7%99%BE%E5%AE%B6%E4%B9%90%E5%AE%A2%E6%9C%8D-%E5%BE%AEqgy889889/m-p/4224328#M328</guid>
      <dc:creator>krewsonvedijuwugopo</dc:creator>
      <dc:date>2024-08-21T05:31:07Z</dc:date>
    </item>
    <item>
      <title>Input error: -2146893008</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/input-error-2146893008/m-p/4218100#M326</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I'm trying to understand what is causing this error. Can't find much information online.&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the error description it looks like a network issue however I need more info to come up with a solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATE/TIME:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xxxxxxxxxxxxxx&lt;BR /&gt;DESCRIPTION:&amp;nbsp;&amp;nbsp;&amp;nbsp; A fatal error occurred while reading the input stream from the network. The session will be terminated (input error: -2146893008, output error: 0).&lt;BR /&gt;COMMENT:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; This is a Fatal Error In Current Process Alert. Please review immediately.&lt;BR /&gt;JOB RUN:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (None)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 18:54:05 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/input-error-2146893008/m-p/4218100#M326</guid>
      <dc:creator>admin1500</dc:creator>
      <dc:date>2024-08-13T18:54:05Z</dc:date>
    </item>
    <item>
      <title>SQL Server Virtualization and S3 - Authentication Error</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/sql-server-virtualization-and-s3-authentication-error/m-p/4210431#M316</link>
      <description>&lt;P&gt;We are experimenting with data virtualization in SQL server 2022 where we have data in S3 that we want to access from our SQL Server instances.&amp;nbsp; I have completed the configuration according to the documentation, but I am getting an error when trying to access the external table.&amp;nbsp; SQL Server says it cannot list the contents of the directory.&amp;nbsp; Logs in AWS indicate that it cannot connect due to an authorization error where the header is malformed.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I verified that I can access that bucket with the same credentials using the AWS cli from the same machine, but I cannot figure out why it is failing or what the authorization header looks like.&amp;nbsp; Any pointers on where to look?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Enable Polybase&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;select serverproperty('IsPolyBaseInstalled') as IsPolyBaseInstalled
exec sp_configure @configname = 'polybase enabled', @configvalue = 1&lt;/LI-CODE&gt;&lt;P&gt;Create Credentials and data source&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;create master key encryption by password = '&amp;lt;some password&amp;gt;'
go

create credential s3_dc with identity = 'S3 Access Key', SECRET = '&amp;lt;access key&amp;gt;:&amp;lt;secret key&amp;gt;'
go

create external data source s3_ds
with (
	location = 's3://&amp;lt;bucket_name&amp;gt;/&amp;lt;path&amp;gt;/',
	credential = s3_dc,
        connection_options = '{
		"s3":{
			"url_style":"virtual_hosted"
		}
	}'
)
go&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create External Table&lt;/P&gt;&lt;LI-CODE lang="applescript"&gt;CREATE EXTERNAL FILE FORMAT ParquetFileFormat WITH(FORMAT_TYPE = PARQUET)
GO
CREATE EXTERNAL TABLE sample_table(
	code varchar,
	the_date date,
	ref_code varchar,
	value1 int,
	value2 int,
	value3 int,
	cost numeric(12,2),
	peak_value varchar
)
WITH (
    LOCATION = '/sample_table/',
    DATA_SOURCE = s3_ds,  
    FILE_FORMAT = ParquetFileFormat
) 
GO&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 16:14:24 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/sql-server-virtualization-and-s3-authentication-error/m-p/4210431#M316</guid>
      <dc:creator>sjungers</dc:creator>
      <dc:date>2024-08-05T16:14:24Z</dc:date>
    </item>
    <item>
      <title>how to send SSIS redirected error rows to json/nvarchar column in sql sever table</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/how-to-send-ssis-redirected-error-rows-to-json-nvarchar-column/m-p/4207675#M270</link>
      <description>&lt;P&gt;I have SSDT transformation component where I have configured in case any truncation, send them to SQL server table. requirement is to capture error information, error code and other column info in json format. I know this can be achieved using script component, but looking for any code snippet.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 19:13:37 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/how-to-send-ssis-redirected-error-rows-to-json-nvarchar-column/m-p/4207675#M270</guid>
      <dc:creator>dpatil1261</dc:creator>
      <dc:date>2024-08-01T19:13:37Z</dc:date>
    </item>
    <item>
      <title>SQL Server Management Studio</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/sql-server-management-studio/m-p/4175311#M263</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am new to Sql Express. (2022)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I have a few questions that would help me along, thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am programming in Visual Studio 2022.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Is it imperitive that I use SQL Server Management Studio to create MDF in SQLEXPRESS DATABASE ENGINE? OR, just use VS2022?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Do I need to utilise SQL Server Management Studio to create a Report Server Project (and have 'report run' feature functionality) OR, just use Visual Studio 2022?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. Do I need to 'buy' a Server Certificate?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been using localdb and creating reports using a Report Server Project. But of course I can not get them to run under localdb. I have read and tried everything that I can. Besides creating a SqlExpress database server, I only managed to allow open the correct port in Microsoft Firewall Defender. Regarding permissions, certificates ect..., I am lost.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help and guidance is appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Shane1961&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2024 06:43:16 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/sql-server-management-studio/m-p/4175311#M263</guid>
      <dc:creator>Shane1961</dc:creator>
      <dc:date>2024-06-25T06:43:16Z</dc:date>
    </item>
    <item>
      <title>login failed for user sa sql server 2022 on windows server 2022</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/login-failed-for-user-sa-sql-server-2022-on-windows-server-2022/m-p/4174425#M258</link>
      <description>&lt;P&gt;i got the login failed error for user sa, but not always&lt;/P&gt;&lt;P&gt;so I went to server properties - security - server authentication&lt;/P&gt;&lt;P&gt;change to windows authentication mode&lt;/P&gt;&lt;P&gt;and change again to sql server and windows authentication mode, and restart sql server. this happened when i upgraded to sql 2022,&lt;/P&gt;&lt;P&gt;I have Service Pack 13 installed, can anyone help?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2024 08:10:37 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/login-failed-for-user-sa-sql-server-2022-on-windows-server-2022/m-p/4174425#M258</guid>
      <dc:creator>Aman_Susanto</dc:creator>
      <dc:date>2024-06-24T08:10:37Z</dc:date>
    </item>
    <item>
      <title>Getting error message to connect with server</title>
      <link>https://techcommunity.microsoft.com/t5/sql-server-engine/getting-error-message-to-connect-with-server/m-p/4149468#M254</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello! I'm getting this error messages while i am trying to connect to the server. I have restart the laptop so many times but it still showing the same messages. shall i uninstall it and reinstall it again? This's first time I'm getting&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 23:08:43 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/sql-server-engine/getting-error-message-to-connect-with-server/m-p/4149468#M254</guid>
      <dc:creator>misbah7uddin</dc:creator>
      <dc:date>2024-05-22T23:08:43Z</dc:date>
    </item>
  </channel>
</rss>

