Ms sql ошибка 1073548784

  • Remove From My Forums
  • Question

  • Hello,

    I am running SQL Server 2008 R2 (Microsoft SQL Server Management Studio      10.50.2500.0
    Strumenti client di Microsoft Analysis Services      10.50.2500.0
    Microsoft Data Access Components (MDAC)      6.1.7601.17514
    Microsoft MSXML      3.0 6.0
    Microsoft Internet Explorer      9.0.8112.16421
    Microsoft .NET Framework      2.0.50727.5456
    Sistema operativo      6.1.7601)

    I have two backup plans, one Daily, with Differential backup, and one Weekly with FULL backup. I keep all files for 30 days.

    Since I want to be really really sure of backing up my precious data, I installed Cobian Backup, and created a task to daily zip and transfer the (incremental) files via FTP to some other place in the world.

    Since  running Cobian Backup, the Daily plan has broken. It complains that it cannot find the backup information any more, and returns a -1073548784 error.

    the log files are not very helpful:

    «Possible failure reasons: Problems with the query, «ResultSet» property not set correctly, parameters not set correctly, or connection not established correctly.»

    Why is the zip and ftp shorting the SQL?

    Any help is welcome!

    thanks

Answers

  • Hello,

    the error detail for -1073548784 suggests that SQL Server is unable to find the latest Full backup, on which to run the Differential.

    I tried disabling the Volume Shadow Copy option on Cobian Backup. Now the differential backup on SQL Server works.

    Something will not work if one of the two processes try to access the backup files in the same time frame. I will have to find some workaround for this.

    My conclusion is:

    SQL Server 2008 R2 differential backups are incompatible with Volume Shadow Copy service on Windows Server 2008 R2.

    Somehow, somewhere Volume Shadow Copy (or Cobian Backup’s use of it) breaks the ability of SQL Server to find the latest Full backup.

    • Marked as answer by

      Friday, September 28, 2012 1:20 PM

null

MS SQL error 1073548784 access to path … denied

Ошибка с кодом -1073548784 

ms sql error 1073548784 access to path ... denied 

при выполнении планов обслуживания (maintenance plan) в ms sql server.

Несмотря на пользователей от которых работают сервисы, необходимо дать разрешения на уровне файловой системы для пользователя NT ServiceMSSQLSERVER на уровне rw или full controll 

SQL Server 2014 Developer — duplicate (do not use) SQL Server 2014 Enterprise — duplicate (do not use) SQL Server 2014 Standard — duplicate (do not use) More…Less

Symptoms

Consider the following scenario:

  • You use the AlwaysOn Availability Groups feature in Microsoft SQL Server 2014.

  • You have an availability group whose backup-preference setting is set as «Prefer Secondary» or «Secondary only.»

  • You create a maintenance plan that uses a backup database task to back up a database, and the database belongs to the availability group.

  • You select the «Verify backup integrity» option, and click to clear the «For availability databases, ignore replica priority for backup and backup on primary settings» option for the backup database task.

  • You execute the maintenance plan.

In this scenario, you receive the following error message:

Error Number:
-1073548784
Error Message:
Executing the query «<Query statement>» failed with the following error: «Cannot open backup device ‘<File path of the backup file>’. Operating system error 2(The system cannot find the file specified.). VERIFY DATABASE is terminating abnormally.». Possible failure reasons: Problems with the query, «ResultSet» property not set correctly, parameters not set correctly, or connection not established correctly.

Resolution

The issue was first fixed in the following cumulative updates of SQL Server:

  • Cumulative Update 2 for SQL Server 2014 SP1

  • Cumulative Update 9 for SQL Server 2014

Status

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the «Applies to» section.

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

  • Remove From My Forums
  • Question

  • Hi Everyone,

    We have a weekly maintenance plan in place that fails with the following error:

    Executing the query «ALTER INDEX [NCI_WI_BId_PId_PMId_SId_NPB] ON [Infr…» failed with the following error: «Transaction (Process ID 94) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction.».
    Possible failure reasons: Problems with the query, «ResultSet» property not set correctly, parameters not set correctly, or connection not established correctly.

    This maintenance plan runs okay for one week and it fails the next and so forth and so on. I haven’t been able to find the culprit.. I have created and re-created the maintanence plan, play around with schedules becuase I thoght that other job could
    be blocking this task but nothing works. Do you guys have any advice?

    Running SQL Server 2008 R2

    Thanks in advance,

    J

Answers

  • Add the startup option -T1222 to SQL Server. (You do this from SQL Server
    Configuration Manager.) You need to restart SQL Server for the option to
    take effect.

    SQL Server will now print a trace for all deadlocks to the SQL Server
    errorlog.

    You can also enable the trace flag with the command DBCC TRACEON. But if you
    make it a startup option, you have it on for good.

    When you add the startup option, make sure that you don’t add any space
    there. Run DBCC TRACESTATUS(-1) after the restart to make sure that the flag
    is in effect.


    Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se

    • Proposed as answer by

      Thursday, July 12, 2012 2:50 AM

    • Marked as answer by
      Iric Wen
      Thursday, July 19, 2012 8:33 AM

(9) Вот. Скопировал из нашей базы. Только MYDB поменяй на имя базы.

declare @minRows int

set @minRows = 10000

declare @reindexQuery nvarchar(max)

set @reindexQuery =

REPLACE(REPLACE(

cast(

(

select

‘BEGIN TRY ALTER INDEX ‘+idx.name+’ ON ‘+ sc.name+’.’+ t.name+

CASE

WHEN st.avg_fragmentation_in_percent > 30 THEN ‘ REBUILD WITH (ONLINE=OFF) END TRY BEGIN CATCH ALTER INDEX ‘+idx.name+’ ON ‘+ sc.name+’.’+ t.name+ ‘ REBUILD WITH (ONLINE=OFF) END CATCH;’

ELSE ‘ REORGANIZE END TRY BEGIN CATCH END CATCH;’

END as query

from sys.dm_db_index_physical_stats( DB_ID(),NULL,NULL,NULL,NULL) st

join sys.tables t on (st.object_id=t.object_id)

join sys.schemas sc on (sc.schema_id=t.schema_id)

join sys.indexes idx on (t.object_id=idx.object_id and st.index_id=idx.index_id)

join sys.partitions p on (p.index_id=idx.index_id and p.object_id=idx.object_id)

where p.rows > @minRows and st.avg_fragmentation_in_percent > 30

order by st.avg_fragmentation_in_percent desc

FOR XML PATH(»), TYPE

) as nvarchar(max))

,'</query>’,’;

‘),'<query>’,»)

print @reindexQuery

exec (@reindexQuery)

null

MS SQL error 1073548784 access to path … denied

Ошибка с кодом -1073548784 

ms sql error 1073548784 access to path ... denied 

при выполнении планов обслуживания (maintenance plan) в ms sql server.

Несмотря на пользователей от которых работают сервисы, необходимо дать разрешения на уровне файловой системы для пользователя NT ServiceMSSQLSERVER на уровне rw или full controll 

Hi,

I am having a Microsoft SQL Server 2012 Standard version 11.0.6020.0 installation where all our SharePoint databases are placed.

select @@version returns:

Microsoft SQL Server 2012 (SP3) (KB3072779) — 11.0.6020.0 (X64) Oct 20 2015 15:36:27 Copyright (c) Microsoft Corporation Standard Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)

We are having a rather large SharePoint environment (6 SharePoint servers) and we have over 70 SharePoint related databases (more than 6 TB data).

During the last couple of months, we have upgraded our SharePoint environment to SharePoint SP1 and SharePoint CU september 2015 edition and upgraded the SQL server to MSSQL SP3.

After all these upgrades, we now experience that our nightly «Rebuild index tasks» jobs fails every night.

Alle the databases are placed in 4 different Rebuild index tasks, and each job is configurated like this:

«Object:» Tables and Views

«Free space options»:

x Default free space per page

«Advanced options»

x Sort results in tempdb

x Keep index online while reindexing

x Rebuild indexes offline

But now they fail with the following error:

Failed:(-1073548784) Executing the query «ALTER INDEX [UserInfo_Mobile] ON [dbo].[UserInfo] …» Failed with the following error: «Transaction (Process ID 1468) was deadlocked on lock resources with another process and has been chosen as the
deadlock victim. Rerun the transaction.». Possible failure reasons: Problems with the qurey, «Resultset» property not set correctly, parameters not set correctly, or connection not established correctly.

Each job used to run between 2 or 3 hours before completing succesfuld, and now they run for around 2 hours before failing with the deadlock error above.

I have tried to change the running schedule to different times during the night where the user workload on the SharePoint environment not should be so large, and no other SQL jobs are running (diffential backup or update statistics).

The only SQL job that are running, is the transaction log backup every 3 hours 24/7.

If I just create a job with just one of the databases and run it, it also fails after running for 13 minuts (the database is one of the smaller (~20 GB —  but it is active in the SharePoint environment).

My weekly «Update statistics job» and «Integrity check job» runs succesfull without errors (The integrity check is performed on all online databases and include indexes).

Low diskspace is not an issue, there is plenty availiable on each disk and the transaction log drive also have plenty.

There is not errors or warnings in SharePoint about this issue.

Do you have any suggestions to what I can try to get the rebuild index tasks to run succesfully again?

Kind regards,

Carl-Marius

Hi,

I am having a Microsoft SQL Server 2012 Standard version 11.0.6020.0 installation where all our SharePoint databases are placed.

select @@version returns:

Microsoft SQL Server 2012 (SP3) (KB3072779) — 11.0.6020.0 (X64) Oct 20 2015 15:36:27 Copyright (c) Microsoft Corporation Standard Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)

We are having a rather large SharePoint environment (6 SharePoint servers) and we have over 70 SharePoint related databases (more than 6 TB data).

During the last couple of months, we have upgraded our SharePoint environment to SharePoint SP1 and SharePoint CU september 2015 edition and upgraded the SQL server to MSSQL SP3.

After all these upgrades, we now experience that our nightly «Rebuild index tasks» jobs fails every night.

Alle the databases are placed in 4 different Rebuild index tasks, and each job is configurated like this:

«Object:» Tables and Views

«Free space options»:

x Default free space per page

«Advanced options»

x Sort results in tempdb

x Keep index online while reindexing

x Rebuild indexes offline

But now they fail with the following error:

Failed:(-1073548784) Executing the query «ALTER INDEX [UserInfo_Mobile] ON [dbo].[UserInfo] …» Failed with the following error: «Transaction (Process ID 1468) was deadlocked on lock resources with another process and has been chosen as the
deadlock victim. Rerun the transaction.». Possible failure reasons: Problems with the qurey, «Resultset» property not set correctly, parameters not set correctly, or connection not established correctly.

Each job used to run between 2 or 3 hours before completing succesfuld, and now they run for around 2 hours before failing with the deadlock error above.

I have tried to change the running schedule to different times during the night where the user workload on the SharePoint environment not should be so large, and no other SQL jobs are running (diffential backup or update statistics).

The only SQL job that are running, is the transaction log backup every 3 hours 24/7.

If I just create a job with just one of the databases and run it, it also fails after running for 13 minuts (the database is one of the smaller (~20 GB —  but it is active in the SharePoint environment).

My weekly «Update statistics job» and «Integrity check job» runs succesfull without errors (The integrity check is performed on all online databases and include indexes).

Low diskspace is not an issue, there is plenty availiable on each disk and the transaction log drive also have plenty.

There is not errors or warnings in SharePoint about this issue.

Do you have any suggestions to what I can try to get the rebuild index tasks to run succesfully again?

Kind regards,

Carl-Marius

  • Remove From My Forums
  • Question

  • I scheduled a maint plan to rebuild index. All table’s indexes are successfully built except for one table. The error message I got:

    Failed:(-1073548784) Executing the query «ALTER INDEX [Index_name] ON [dbo].[table] REBUILD WITH ( PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY  = OFF, ONLINE = ON )
    » failed with the following error: «Online index operations can only be performed in Enterprise edition of SQL Server.». Possible failure reasons: Problems with the query, «ResultSet» property not set correctly, parameters not set correctly, or connection not established correctly.

    Can someone tell me what the problem is and how to fix it? Thanks.

Answers

  • Remove From My Forums
  • Question

  • Hi everyone,

    We’ve a problem when we want to do a reorganization of indexes, it give us the following error:

    Error Number: -1073548784

    Error message:

    Executing the query «ALTER INDEX [ARFCRDATA~0] ON [qas].[ARFCRDATA] REORGANIZE WITH ( LOB_COMPACTION = ON )
    » failed with the following error: «The index «ARFCRDATA~0» (partition 1) on table «ARFCRDATA» cannot be reorganized because page level locking is disabled.». Possible failure reasons: Problems with the query, «ResultSet» property not set correctly, parameters not set correctly, or connection not established correctly.

    We’re using SQL Server 2005 with SAP ECC 6.0.

    Have you any idea to solve this??
    I’m created the plan with the wizard, and manually, and the same error occurs.

    Thanks in advance

Answers

  • Talk to the SAP people, or do rebuild instead of reorganize.


    Tibor Karaszi, SQL Server MVP

    http://www.karaszi.com/sqlserver/default.asp

    http://sqlblog.com/blogs/tibor_karaszi

    • Proposed as answer by

      Monday, November 30, 2009 2:33 AM

    • Marked as answer by
      Alex Feng (SQL)
      Friday, December 4, 2009 3:24 AM
  • Its better to get a recommendation from SAP regarding rebuilding / reorganising SQL indexes.


    Thanks,
    Leks

    • Proposed as answer by
      Alex Feng (SQL)
      Monday, November 30, 2009 2:33 AM
    • Marked as answer by
      Alex Feng (SQL)
      Friday, December 4, 2009 3:24 AM
  • Remove From My Forums
  • Question

  • Hi everyone,

    We’ve a problem when we want to do a reorganization of indexes, it give us the following error:

    Error Number: -1073548784

    Error message:

    Executing the query «ALTER INDEX [ARFCRDATA~0] ON [qas].[ARFCRDATA] REORGANIZE WITH ( LOB_COMPACTION = ON )
    » failed with the following error: «The index «ARFCRDATA~0» (partition 1) on table «ARFCRDATA» cannot be reorganized because page level locking is disabled.». Possible failure reasons: Problems with the query, «ResultSet» property not set correctly, parameters not set correctly, or connection not established correctly.

    We’re using SQL Server 2005 with SAP ECC 6.0.

    Have you any idea to solve this??
    I’m created the plan with the wizard, and manually, and the same error occurs.

    Thanks in advance

Answers

  • Talk to the SAP people, or do rebuild instead of reorganize.


    Tibor Karaszi, SQL Server MVP

    http://www.karaszi.com/sqlserver/default.asp

    http://sqlblog.com/blogs/tibor_karaszi

    • Proposed as answer by

      Monday, November 30, 2009 2:33 AM

    • Marked as answer by
      Alex Feng (SQL)
      Friday, December 4, 2009 3:24 AM
  • Its better to get a recommendation from SAP regarding rebuilding / reorganising SQL indexes.


    Thanks,
    Leks

    • Proposed as answer by
      Alex Feng (SQL)
      Monday, November 30, 2009 2:33 AM
    • Marked as answer by
      Alex Feng (SQL)
      Friday, December 4, 2009 3:24 AM

ночной регламент, через раз возникает ошибка Сбой выполнения запроса «ALTER INDEX [_InfoRg8163_ByDims8181_RRNR] ON [dbo]…» со следующей ошибкой: «Транзакция (идентификатор процесса 51) вызвала взаимоблокировку ресурсов блокировка с другим процессом и стала жертвой взаимоблокировки. Запустите транзакцию повторно.». Возможные причины сбоя: проблемы с этим запросом, свойство «ResultSet» установлено неправильно, параметры установлены неправильно или соединение было установлено неправильно. Как лечить?

а 1с то причем? это ошибка при работе плана обслуживания для скуля

Так ты обслуживание в один поток запускай… И всех пользователей, включая регламенты, выгоняй…

ну пользователи ночью спят, а вот регламенты возможно, хотя тяжелые точно не запускаются, спасибо посмотрю, но раньше такого не было

Если на секунду отвлечься от вопроса — ALTER INDEX в ночное обслуживание? Это что за задание такое интересное?

alter index rebuild или alter index REORGANIZE   нормальное задание.

Тэги:

Комментарии доступны только авторизированным пользователям

Понравилась статья? Поделить с друзьями:
  • Ms sql вызов ошибки
  • Ms sql server проверка базы на ошибки
  • Ms sql server ошибка 4064
  • Ms settings ошибка файловой системы 2147219196
  • Ms settings ошибка файловой системы 2144927439