Efficient way to do the Purge / Delete activity on a SQL Server Heap table

Hi,
I have a huge heap table (sql 2008) on a staging database which is used to store log history for an application.
The application is not directly using this heap table.
The table is having a Date column and We have a Purge Plan to remove the records that are all older than 1 Year.
In this scenario, which one will help and support us in order to expedite the purge process ?
Whether Crating a Clustered Index or Non-Clustered Index ?
Of course, I am planning to use the following script in order to avoid Log file bloat and get rid of the blockings.
Can some help in this regard by providing suggestion.

I personally wouldn't create a clustered index on the table.  Adding a clustered index has two problems in your scenario.
Adding a clustered index will be time consuming and resource intensive.  Talk about log file bloat...
A clustered index will result in poorer insert performance when compared to leaving the table as a heap and adding a non-clustered index.
I would add the non-clustered index to the table on the date column you refer to, then purge data in small batches.  Although purging data in small batches might not be quite as fast as purging the data in a single batch, it won't be much slower and
will allow you to have total control over your log file.
The non-clustered index on the date column will be small since even the largest date datatypes only consume 10 bytes of space.  So for a table containing 5 billion records the non-clustered index would be only about 90 GB in size.
As stated above you could then purge data in small batches and perform log backups between batches to control log file bloat or simply switch the database to simple recovery model.

Similar Messages

  • What is the proper way to demote a Win 2003 Domain Controller running SQL Server 2008 WorkGroup Edition?

    Hi, 
    What is the proper way to demote a Windows 2003 Domain Controller running SQL Server 2008 WorkGroup Edition? 
    I will be migrating AD from Win 2003 to 2012....
    Thanks in advanced. 

    Running SQL on a domain controller is highly not recommended for performance reasons and for complexities it introduces in the management of both systems (You are already facing this situation now).
    I would recommend proceeding like the following before demoting your domain controller:
    Install a new SQL server on a member server
    Migrate your databases to the new SQL server
    Once done, you can safely demote your DC.
    More if you ask them here: http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?category=sqlserver
    This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.
    Get Active Directory User Last Logon
    Create an Active Directory test domain similar to the production one
    Management of test accounts in an Active Directory production domain - Part I
    Management of test accounts in an Active Directory production domain - Part II
    Management of test accounts in an Active Directory production domain - Part III
    Reset Active Directory user password

  • How to delete a row from a SQL Server CE Table with multiple JOINs?

    I want to delete a record from a SQL Server CE table.
    There are 3 tables scripts, options and results. I would like to remove a record from the results table. The where clause contains dynamic information which retrieved via other queries to different tables in the same database. These queries work fine and deliver
    the desired data.
    The Compact server is a clone of a remote table created using the sync framework. The same query to the remote table works fine.
    The error I get is:
    There was an error parsing the query. [ Token line number = 1,Token line offset = 10,Token in error = from ]
    The code that throws the exception is as follows:
    Dim connLoc As SqlCeConnection = New SqlCeConnection(My.Settings.ConnectionString)connLoc.Open()     Dim strDel As String = "Delete r from ResultsTable r inner join OptionsTable o ON o.TestName=r.TestName inner join ScriptTable c ON r.TestName=c.TestName WHERE r.TestName = '" & ds1Loc.Tables(0).Rows(0)(1) & "' AND [Index] = '" & lstIndex & "'"Dim cmdDel As SqlCeCommand = New SqlCeCommandcmdDel.CommandText = strDelcmdDel.Connection = connLoccmdDel.ExecuteNonQuery()
    The values held in ds1Loc.Tables(0).Rows(0)(1) and lstIndex are
    correct so should not be the problem.
    I also tried using parameterised queries
    Dim strDel As String = "Delete r from [ResultsTable] r inner join [OptionsTable] o ON o.TestName=r.TestName inner join [ScriptTable] c ON r.TestName=c.TestName WHERE r.TestName = @TestName AND [Index] = @lstIndex"
    Dim cmdDel As SqlCeCommand = New SqlCeCommand        cmdDel.CommandText = strDel       
    With cmdDel.Parameters           
    .Add(New SqlCeParameter("@TestName", ds1Loc.Tables(0).Rows(0)(1)))           
    .Add(New SqlCeParameter("@lstIndex", lstIndex))       
    End With 
    cmdDel.Connection = connLoc        cmdDel.ExecuteNonQuery()
    I have tried replacing the "=" with "IN" in the the WHERE clause but this has not worked.
    Is it the join that is causing the problem? I can do a select with the same search criteria and joins from the same database.
    Also this query works with SQL Server. Is it perhaps that SQL CE does not support the Delete function the same as SQL Server 2008? I have been looking at this for a while now and cannot find the source of the error. Any help would be greatly appreciated.

    Hello,
    In SQL Server Compact, we can use join in FROM clause. The DELETE statement fail may be caused by the FOREIGN KEY constraint.
    Please refer to:
    DELETE (SQL Server Compact)
    FROM Clause (SQL Server Compact)
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • I have enabled both the traces 1204 and 1222 in sql server 2008 but not able to capture deadlocks

    In Application error:
    2014-09-06 12:04:10,140 ERROR [org.apache.catalina.core.ContainerBase] Servlet.service() for servlet DoMethod threw exception
    javax.servlet.ServletException: java.lang.Exception: [ErrorCode] 0010 [ServerError] [DM_SESSION_E_DEADLOCK]error:  "Operation failed due to DBMS Deadlock error." 
    And
    I have enabled both the traces 1204 and 1222 in sql server 2008 but still I am not getting any deadlock in sql server logs.
    Thanks

    Thanks Shanky may be u believe or not but right now I am in a migration of 4 lakh documents in documentum on Production site.
    and the process from documentum is halting due to this error but I am not able to get any deadlock in the sql server while the deadlock error is coming in documentum:
    [ Date ] 2014-09-06 17:54:48,192 [ Priority ] INFO [ Text 3 ] [STDOUT] 17:54:48,192 ERROR [http-0.0.0.0-9080-3] com.bureauveritas.documentum.commons.method.SystemSessionMethod - ERROR 100: problem occured when connecting repository! DfServiceException::
    THREAD: http-0.0.0.0-9080-3; MSG: [DM_SESSION_E_DEADLOCK]error: "Operation failed due to DBMS Deadlock error."; ERRORCODE: 100; NEXT: null at com.documentum.fc.client.impl.connection.docbase.netwise.NetwiseDocbaseRpcClient.checkForDeadlock(NetwiseDocbaseRpcClient.java:276)
    at com.documentum.fc.client.impl.connection.docbase.netwise.NetwiseDocbaseRpcClient.applyForObject(NetwiseDocbaseRpcClient.java:647) at com.documentum.fc.client.impl.connection.docbase.DocbaseConnection$8.evaluate(DocbaseConnection.java:1292) at com.documentum.fc.client.impl.connection.docbase.DocbaseConnection.evaluateRpc(DocbaseConnection.java:1055)
    at com.documentum.fc.client.impl.connection.docbase.DocbaseConnection.applyForObject(DocbaseConnection.java:1284) at com.documentum.fc.client.impl.docbase.DocbaseApi.authenticateUser(DocbaseApi.java:1701) at com.documentum.fc.client.impl.connection.docbase.DocbaseConnection.authenticate(DocbaseConnection.java:418)
    at com.documentum.fc.client.impl.connection.docbase.DocbaseConnection.open(DocbaseConnection.java:128) at com.documentum.fc.client.impl.connection.docbase.DocbaseConnection.<init>(DocbaseConnection.java:97) at com.documentum.fc.client.impl.connection.docbase.DocbaseConnection.<init>(DocbaseConnection.java:60)
    at com.documentum.fc.client.impl.connection.docbase.DocbaseConnectionFactory.newDocbaseConnection(DocbaseConnectionFactory.java:26) at com.documentum.fc.client.impl.connection.docbase.DocbaseConnectionManager.getDocbaseConnection(DocbaseConnectionManager.java:83)
    at com.documentum.fc.client.impl.session.SessionFactory.newSession(SessionFactory.java:29) at com.documentum.fc.client.impl.session.PrincipalAwareSessionFactory.newSession(PrincipalAwareSessionFactory.java:35) at com.documentum.fc.client.impl.session.PooledSessionFactory.newSession(PooledSessionFactory.java:47)
    at com.documentum.fc.client.impl.session.SessionManager.getSessionFromFactory(SessionManager.java:111) at com.documentum.fc.client.impl.session.SessionManager.newSession(SessionManager.java:64) at com.documentum.fc.client.impl.session.SessionManager.getSession(SessionManager.java:168)
    at com.bureauveritas.documentum.commons.method.SystemSessionMethod.execute(Unknown Source) at com.documentum.mthdservlet.DfMethodRunner.runIt(Unknown Source) at com.documentum.mthdservlet.AMethodRunner.runAndReturnStatus(Unknown Source) at com.documentum.mthdservlet.DoMethod.invokeMethod(Unknown
    Source) at com.documentum.mthdservlet.DoMethod.doPost(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:182) at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104) at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:619) (Log Path:SID CER > vmsfrndc01docpp > JMS_Log > server ,Host: vmsfrndc01docpp ,Apps: [SID CER, SID IVS])</init></init>
    Thanks

  • Is Distributed Transaction Coordinator services of the application role are required by SQL Server 2012 for clustering and support of SharePoint 2013.

    All I want to know is if Distributed Transaction Coordinator services of the application role are required by SQL Server 2012 for clustering and support of SharePoint 2013.
    I have been planning and deploying my companies first Windows Server 2012/SQL Server 2012 Always On cluster and Always On Availability Groups Multi-Subnet cluster and instances for SharePoint 2013, and I will be brutally honest, the documentation on either
    the MSDN and TechNet leave alot to be desired. Continually finding links in the documentation will take me from a Windows 2012 reference to a page talking about Windows Server 2008 or R2, The differences of which there are so many when it comes to configurations,
    settings, roles, services when working with SQL Server 2012. I have been confused, frustrated, screaming mad, with all the misdirection in this documentation.  The documentation takes me windows 2008 R2 which is different than 2012!
    Tired and trying to pick myself up off the floor!
    Greg
    Gman

    In general, DTC is not required for SQL 2012.  But, since you are asking specifically about SharePoint, it would be better to ask in a SharePoint forum.  They would be more likely to know those situations where FTC might be needed by SharePoint. 
    .:|:.:|:. tim

  • Query to find the user is having access to sql server DB

    Hi,
    Please help me in this.
    Query to find the whether the user is having access to sql server DB.
    Cheers,
    sajith

    TUBBY_ORCL?Select 1 from dual where 'ORACLE' = 'SQL SERVER';
    no rows selected
    Elapsed: 00:00:00.01

  • New install of SQL 2014 Std MSDN. Get "The SQL Server product key is not valid. To proceed, re-enter the product key values from the Certificate of Authenticity (COA) or SQL Server packaging."

    Trying to install a new version of SQL 2014 Std 64 or x86. Installing on Windows 8.1Pro 64bit machine.
    I get:
    "TITLE: SQL Server Setup failure.
    SQL Server Setup has encountered the following error:
    The SQL Server product key is not valid. To proceed, re-enter the product key values from the Certificate of Authenticity (COA) or SQL Server packaging.
    Error code 0x858C0017."
    I looked at the summary log and that is the only error.
    I made sure there were no other instances of SQL on this machine. Uninstalled all VS2013 and sql instances just in case. IF there is somewhere to check if a previous version or license is causing the issue, i would be glad to check.
    Any help would be appreciated.

    Hi,
    Please read this thread with similar issue
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/bdd94577-515c-49fa-be44-008eacece057/installing-sql-server-2012-on-a-new-vm-error-code-0x858c0017?forum=sqlsetupandupgrade
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Articles

  • How to align the text in justify format with SQL Server Reporting Services?

            How to align the text in justify format In SQL server Reporting Services? Is there any code to do so?

    Hi,
    I'm afraid that if you want to have this kind of functionality, you will need to write a custom control. Here is an example: http://msdn2.microsoft.com/en-us/library/ms345265.aspx. The issue with custom controls is that it needs to be known by all the reportservers that will render your report.
    Greetz,
    Geert
    Geert Verhoeven
    Consultant @ Ausy Belgium
    My Personal Blog

  • Failed to retrieve data from the database. 42000(Microsoft)(ODBC SQL Server

    Failed to retrieve data from the database. 42000(Microsoft)(ODBC SQL Server Driver)(SQL Server)Line 1: Incorrect syntax near 's'

    Hi Diptesh,
       What is your crystal reports version ? CRXI or higher?
    And does your filter bject consists of apostrophie s fields?
    If this is the case then this is a known issue try installing the latest service packs or fix packs to see if it resolves the issue?
    Regards,
    Vinay

  • How to use ADO(Microsoft ActiveX Data Objective 2.8 Library) to execute the store procedure of database in SQL server

    how to use ADO(Microsoft ActiveX Data Objective 2.8 Library) to execute the store procedure of database in SQL server?
    Does any body can tell me about this?
    thanks
    [email protected]

    Hi 
    Did you succeed to execute the procedure?
    How ?
    Thanks
    Shimon Zerbib

  • Most efficient way to extract the amplitude of a signal and display on an intensity graph

    Hi All,
    I am having difficulty to display the amplitude of an voltage signal (voltage picked up by NI DAQ card).
    what I am trying: Voltage signal (Dynamic data type)--> 2D array of dynamic data type (using 2 nested for loops) --> normal 2D array with scalar values --> intensity graph
    I have difficulty to convert the dynamic 2D array to scalar 2D arry.
    I only want to extract the amplitude of the imcoming signal.. any body can give some advice? thanks in advance..
    Charlie

    Hi Hillary,
    Thanks for your reply.
    Yes, I did tried to use Amplitude and Levels Express vi, it should be the one I am looking for, but I found it not work in my case, I need to put the value of amplitudes into a 2D array.
    If I use Amplitude and Levels Express vi, it will give me a 3D array, I have found the solution, just convert the dynamic data to single scalar. (see pic attached)
    Anybody can help me to solve the following 2 problems:
    1. The speed of this program is too low, i think ii due to the DAQ assistant in the 2 for loops (for creating 2D array), it should be able to re-write using DAQmx (as "centerbolt" told me), I am working on this now, if anybody can help, I will appreciate that.
    2. Is there any other way to creat the 2D array (for purpose of increasing speed also).
    Thanks,
    Charlie

  • Most efficient way to return the totalcount along with pagewise data [via pagenumber/pagesize as input]

    I have following query to return the page data
    declare @pageSize INT = Null
    ,@pageNumber INT = Null
    declare @totalcount int
    set @pageSize =15
    set @pageNumber = 1
    select *
    from (SELECT ROW_NUMBER()
    OVER(
    ORDER BY dbo.coordinator_event.CoordinatorId) AS RowNumberForPaging
    ,dbo.coordinator_event.EventId
    ,dbo.coordinator_event.NumberOfParticipantAllowed
    ,dbo.coordinator_event.RegistrationClosingDate
    ,dbo.coordinator_event.CoordinatorId
    ,dbo.royalevents_royalevent.title_en AS EventTitleEnglish
    ,dbo.royalevents_royalevent.StartDateTime
    ,Count(dbo.event_attendee_registration.FullName) ParticipantRegistration
    , COUNT(*) OVER(PARTITION BY 1) as TotalRows
    FROM dbo.coordinator_event
    inner JOIN dbo.royalevents_royalevent
    ON dbo.coordinator_event.EventId = dbo.royalevents_royalevent.base_id
    left JOIN dbo.event_attendee_registration
    ON dbo.coordinator_event.CoordinatorId = dbo.event_attendee_registration.CoordinatorId
    and royalevents_royalevent.base_id = event_attendee_registration.EventId
    where coordinator_event.CoordinatorId = 3
    group by dbo.coordinator_event.EventId
    ,dbo.coordinator_event.NumberOfParticipantAllowed
    ,dbo.coordinator_event.RegistrationClosingDate
    ,dbo.coordinator_event.CoordinatorId
    ,dbo.royalevents_royalevent.title_en
    ,dbo.royalevents_royalevent.StartDateTime
    ) MyTable
    WHERE RowNumberForPaging >= ( ( ( @pageSize * @pageNumber ) - @pageSize ) + 1 )
    AND RowNumberForPaging <= ( @pageSize * @pageNumber )
    ORDER BY CoordinatorId
    I want's two thing with it. One thing is about how i can easily return @totalcount as separate parameter instead of part of the result set and secondly if there is a way i can optimize above row_number query to achieve paging
    Kamran Shahid Application Developer (MCP,MCAD,MCSD.NET,MCTS,MCPD.net[web])

    What is your SQL Server version?
    I think there is no way to get the count except for using temp table, e.g.
    select *
    INTO #TempResults
    from (SELECT ROW_NUMBER()
    OVER(
    ORDER BY dbo.coordinator_event.CoordinatorId) AS RowNumberForPaging
    ,dbo.coordinator_event.EventId
    ,dbo.coordinator_event.NumberOfParticipantAllowed
    ,dbo.coordinator_event.RegistrationClosingDate
    ,dbo.coordinator_event.CoordinatorId
    ,dbo.royalevents_royalevent.title_en AS EventTitleEnglish
    ,dbo.royalevents_royalevent.StartDateTime
    ,Count(dbo.event_attendee_registration.FullName) ParticipantRegistration
    , COUNT(*) OVER(PARTITION BY 1) as TotalRows
    FROM dbo.coordinator_event
    inner JOIN dbo.royalevents_royalevent
    ON dbo.coordinator_event.EventId = dbo.royalevents_royalevent.base_id
    left JOIN dbo.event_attendee_registration
    ON dbo.coordinator_event.CoordinatorId = dbo.event_attendee_registration.CoordinatorId
    and royalevents_royalevent.base_id = event_attendee_registration.EventId
    where coordinator_event.CoordinatorId = 3
    group by dbo.coordinator_event.EventId
    ,dbo.coordinator_event.NumberOfParticipantAllowed
    ,dbo.coordinator_event.RegistrationClosingDate
    ,dbo.coordinator_event.CoordinatorId
    ,dbo.royalevents_royalevent.title_en
    ,dbo.royalevents_royalevent.StartDateTime
    ) MyTable
    WHERE RowNumberForPaging >= ( ( ( @pageSize * @pageNumber ) - @pageSize ) + 1 )
    AND RowNumberForPaging <= ( @pageSize * @pageNumber )
    select @TotalCount = TotalRows from #TempResult
    SELECT .. FROM #TempResult
    ORDER BY CoordinatorId
    See also this very recent article about the subject you ask:
    Paging
    a Query with SQL Server
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

  • How we can get the deleted data details in sql server?

    Can we get the details like how much data was deleted?
    Thanks,
    Adi

    Hi Adi_SQL_DBA,
    According to your description, there is a way that you can recover most of the missing data with the aid of Transaction Logs and LSNs (Log Sequence Numbers). Usually, if you know when your data was deleted then the challenge to recover the deleted data is
    not as difficult. But, if you do not know the date and time when the data was deleted, then we will have to find a different way of identifying the data. For more information, there are steps about recovering deleted data in SQL Server, you can review them.
    http://sqlbak.com/blog/recover-deleted-data-in-sql-server/
    In addition, there are steps about know who and when deleted the data.
    http://raresql.com/2012/10/24/sql-server-how-to-find-who-deleted-what-records-at-what-time/
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Best way of handle Log Shipping in Physical Movement of SQL Server

    Hi All
    We are moving SQL Server physically from one rack to another in data centre. Just power off and move the server and network link up and power on and bring to same state before power off.
    One of Server 2005 have Log shipping active. What is best way to maintain Log Shipping during this physical movement. I do not want to remove log shipping and re-configure from scratch.
    Need help for clean and safe method to carry this activity.
    Thanks in Advance

    Thanks for reply...
    No... I am not asking RACK migration. Just SQL SERVER...Here are my steps that I am like to do...
    1. Stop application(s) that connect to the databases on this Server
    Correct
    2. Note of account under which SQL Server running for the purpose of permission of this account on folder(s) for L Log Shipping  
    OK
    2. Stop Jobs using via making script for disable and enable jobs
    Here I have doubt on Log Shipping jobs disable and enable that
    You can use job( tsql) but why not use GUI.Log into SQL Server expand SQL server agent RK on job and disable it.
    a. I should stop LS jobs manually as you recommended but not while running em I right?
    Yes see job activity monitor on both primary and secondary server.It will show status executing  for jobs,look out for LS jobs.
    b. Shall I stop disable jobs first on Secondary or Primary Server?
    First disable on Primary and then on secondary.
    I faced a issue where shutting down SQL agent on Secondary caused Sec database to go in suspect mode.So make sure while you shutdown agent no job is running.If restore log job is running let it complete and then disable the job
    c. On which server I should enable LS jobs first?
    Primary
    3.  Stop SQL Server Services.
    Run sp_who2 or select * from sys.sysprocessess to see any active transaction.Then move accordingly.
    AND take same steps in reverse manner when power on after physical migration of Box.
    Pls advise
    Hope this helps
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Creating the report in BI Publisher with SQL SERVER 2008

    Dear Team,
    I want to create report on BI Publisher....i am able to create report with the help of oracle database ...but i dont'nt know how to create DATA MODEL in sql server 2008 ...
    plz tell me the wright way....
    Thanks,
    Him..

    Hi Jin Chen,
    Thank you for your response. I have disabled all the Symantec End Point Protection Service, but problem persists..
    Further, I have checked through the ULS Log in SharePoint, there is more error reported there:
    11/03/2010 15:19:48.44 ReportingServicesService.exe (0x3510)  
    0x4064
    Windows SharePoint Services   Database                      
    6f8g Unexpected
    Unexpected query execution failure, error code 282. Additional error information from SQL Server is included below. "The 'proc_GetTpWebMetaDataAndListMetaData' procedure attempted to return a status of NULL, which is not allowed. A status of 0 will be
    returned instead." Query text (if available): "{?=call proc_GetTpWebMetaDataAndListMetaData(?,'F77D6A37-F8D2-492C-911C-923C8A135DEB',?,NULL,1,?,?,6187)}"
    11/03/2010 15:19:51.46 ReportingServicesService.exe (0x3510)  
    0x4064
    Windows SharePoint Services   General                      
    8e2s Medium  
    Unknown SPRequest error occurred. More information: 0x80020009
    11/03/2010 15:19:51.69 ReportingServicesService.exe (0x3510)  
    0x1EEC
    Windows SharePoint Services   General                      
    8e2s Medium  
    Unknown SPRequest error occurred. More information: 0x80020009
    Do you have any idea based on the error above?

Maybe you are looking for

  • How can I increase the size of UI toolbars across Adobe Creative suite?

    How can I increase the size of UI toolbars across Adobe Creative suite especially indesign, photoshop, illustrator on a new Apple retina display 2560 x 1140 with out changing/scaleing my screen resolution down?

  • Updating and reading same column with PreparedStatement

    sqlStr = "UPDATE user_mstr SET userid=?, username=?, duration=?, location=?, expiry_date=?, remainder_days=? WHERE userid=?"; stmt = DBConnection.getPreparedStatement(conn,sqlStr); stmt.setString(1,strUserid); stmt.setString(2,strUsername); stmt.setS

  • Checkbox keeps unchecking itself

    I've worked out how to add a surcharge to a total price once a 'credit card payment' checkbox is checked using the Javascript below: Credit Card Surcharge Calulation var cSubTotal = "Subtotal"; var cTaxRate = "Credit Card Surcharge"; var cbSurcharge

  • Copy between planning scenanarious

    HI Experts 1) I created a simulative planning scenario (001) with ms31. 2) After i created simulative planned orders with ms51. 3) Then I leveled the works centers with planning table. Now i have created another simulative planning scenario (002). Ca

  • Send Data From JSP to java file

    I'm trying to enter a name (username and password) in a JSP file and try to get that in a java class. The java class should read the username and print it out in the console. JSP Page: <html> <body> <form method="post" action="../adAuth/check/Validat