Receiving Helpdesk

what is dbcc freeproccache

by Vincenza Moore V Published 3 years ago Updated 3 years ago

DBCC FREEPROCCACHE
This command allows you to clear the plan cache, a specific plan or a SQL Server resource pool.
Mar 31, 2017

Full Answer

What is DBCC freeproccache (compute)?

DBCC FREEPROCCACHE (COMPUTE) only causes SQL Server to recompile queries when they are run on the Compute nodes. It does not cause SQL Data Warehouse or Parallel Data Warehouse to recompile the parallel query plan that is generated on the Control node. DBCC FREEPROCCACHE can be cancelled during execution.

Can multiple DBCC freeproccache commands be run concurrently?

Multiple DBCC FREEPROCCACHE commands can be run concurrently. In Azure Synapse Analytics or Analytics Platform System (PDW), clearing the plan cache can cause a temporary decrease in query performance as incoming queries compile a new plan, instead of reusing any previously cached plan.

How does DBCC work in SQL Server?

To learn more about DBCC commands in SQL Server, I would recommend going through this in-depth article Concept and basics of DBCC Commands in SQL Server Once we execute a query, SQL Server prepares the optimized execution plan and stores that execution plan into the plan cache.

What is DBCC dropcleanbuffers?

Data in the memory that has not chanhed are called clean buffer. With DBCC DROPCLEANBUFFERS we clean this clean buffer. Before you run this command, you can run CHECKPOINT to write the modified data to disk. To understand the working logic of Checkpoint and SQL Server, I recommend reading “ What is Database Checkpoint “?

Result Sets

Permissions

General Remarks For Azure Synapse Analytics and Analytics Platform System

Examples: SQL Server

Examples: Azure Synapse Analytics and Analytics Platform System

Is Freeproccache safe?

The danger is if you run DBCC FREEPROCCACHE with no parameters, it will dump the entire plan cache forcing every plan to be recompiled, similar to if you had just restarted SQL Server (DON'T DO THAT).

What is DBCC in SQL?

Microsoft SQL Server Database Console Commands (DBCC) are used for checking database integrity; performing maintenance operations on databases, tables, indexes, and filegroups; and collecting and displaying information during troubleshooting issues.

What is DBCC Freesystemcache?

Remarks. Running DBCC FREESYSTEMCACHE clears the plan cache for the instance of SQL Server. Clearing the plan cache causes a recompilation of all upcoming execution plans and can cause a sudden, temporary reduction in query performance.

What is DBCC Opentran?

DBCC OPENTRAN helps to identify active transactions that may be preventing log truncation. DBCC OPENTRAN displays information about the oldest active transaction and the oldest distributed and nondistributed replicated transactions, if any, within the transaction log of the specified database.

What does DBCC mean?

In short, DBCC is an acronym for Database Console Command, and it seems more of a documentation mistake when it was called Database Consistency Checker.

How do we use DBCC commands?

Tasks that gather and display various types of information. Validation operations on a database, table, index, catalog, filegroup, or allocation of database pages. DBCC commands take input parameters and return values. All DBCC command parameters can accept both Unicode and DBCS literals.

How do I clean my cache?

Android:On your Android phone or tablet, open the Chrome app .At the top right, tap More .Tap History Clear browsing data.At the top, choose a time range. To delete everything, select All time.Next to “Cookies and site data” and “Cached images and files,” check the boxes.Tap Clear data.

What are dirty pages in SQL Server?

Dirty Pages: Dirty pages are the pages in the memory buffer that have modified data, yet the data is not moved from memory to disk. Clean Pages: Clean pages are the pages in a memory buffer that have modified data but the data is moved from memory to disk. Well, that's it. It is that simple of definition.

What is flush cache in SQL Server?

FlushCache is the SQL Server routine that performs the checkpoint operation. The following message is output to the SQL Server error log when trace flag ( 3504 ) is enabled.

What is DBCC Inputbuffer?

What is DBCC INPUTBUFFER ? It is a command used to identify the last statement executed by a particular SPID. You would typically use this after running sp_who2. The great thing about this DBCC command is that it shows the last statement executed, whether running or finished.

How do I view SQL transactions?

Use DBCC OPENTRAN to verify whether an open transaction exists within the transaction log. The inactive part of the log can be truncated if you use the BACKUP LOG statement, an open transaction can avoid the log from truncating entirely. To recognize an open transaction, use sp_who to get the system process ID.

What are open transactions?

What Is an Opening Transaction? An opening transaction, a term typically associated with derivative products, refers to the initial buying or selling that establishes, or opens, a new position. One can buy to open to establish a long position or sell to open a short position.

What is DBCC PAGE?

DBCC PAGE command is used to display contents of data pages where table rows data are stored in SQL Server database tables. Database administrators and SQL developers can use DBCC PAGE statement for displaying data in certain data page.

How do I run DBCC?

Run the "DBCC CHECKDB" query in Microsoft SQL Server Management StudioStart > All Programs > Microsoft SQL Server 2008 R2 > SQL Server Management Studio.When the Connect to Server Dialog Box comes up, click "Connect" to open up SQL.Click on the New Query option.Type "DBCC CHECKDB" in the New Query dialog.More items...•

What does DBCC Traceon do?

DBCC TRACEON (3205,-1); You can enable all plan-affecting hotfixes controlled by trace flags 4199 and 4137 for a particular query.

Is DBCC Checkdb necessary?

Microsoft runs corruption checks in the background with your backups (This doesn't mean CHECKDB isn't needed. You should still be doing your DBA 101 tasks.)

Introduction to Execution plan and Procedural cache

Once we execute a query, SQL Server prepares the optimized execution plan and stores that execution plan into the plan cache. Next time, if the same query is run, SQL Server uses the same execution plan instead of generating a new one.

Overview of DBCC FREEPROCCACHE command

We can use the DBCC FREEPROCCACHE command to clear the procedural cache in SQL Server. We might drop a single execution plan or all plans from the buffer cache. SQL Server needs to create new execution plans once the user reruns the query.

Maximum Degree of Parallelism and DBCC FREEPROCCACHE command

Usually, experienced DBA with performance troubleshooting skills, modify the SQL Server max degree of parallelism (MAXDOP) setting to control the number of processors in the parallel query execution plan. The default value of MAXDOP is 0, and it allows SQL Server to use all available CPU for the parallel execution plan.

Quick Summary of DBCC FREEPROCCACHE command

Below is the quick summary of what we learned about DBCC FREEPROCCACHE command in this article:

Conclusion

In this article, we explored the DBCC FREEPROCCACHE command to clear the procedural cache along with the consequences of it. You should know this command and use it only in case of any urgent requirements.

Why does each stored procedure have to be recompiled?

Thus, each stored procedure has to be recompiled because there is no execution plan stored in the memory. In some cases (eg if you are having a problem, such as parameter sniffing), recompile the queries may solve your problem. In the article “ What is Parameter Sniffing ” you will find details about parameter sniffing.

Can you clean up the buffer cache?

You can clean up unchanged data in the buffer cache with DBCC DROPCLEANBUFFERS. In SQL Server, the data is not read directly from the disk. It is first transferred from disk to memory (buffer cache) and then transmitted to users from the memory. If the data in the memory changes, SQL Server writes the data to the disk when ...

Description

DBCC FREEPROCCACHE is used for purge all of the parsed query plans out of memory. This is commonly used in development environments, but not as common in a production environment.

Example

The following example is from a development envioronment using the AdventureWorks2012 Database.

Using DBCC FreeProcCache For A Specific Plan Handle

If you wanted to clear just a single plan handle, and not all the plan handles, you could use the optional parameter called @handle.

How big is my Procedure Cache?

You can run the following query to check the size of your procedure cache.

Database Health Reports and the Plan Cache

You can also view the plan cache using the Database Health Reports application as shown here.

DBCC FREEPROCCACHE

This command allows you to clear the plan cache, a specific plan or a SQL Server resource pool.

DBCC FREESYSTEMCACHE

Releases all unused cache entries from all caches. You can use this command to manually remove unused entries from all caches or from a specific Resource Governor pool.

DBCC FREESESSIONCACHE

Flushes the distributed query connection cache used by distributed queries against an instance of SQL Server.

DBCC FLUSHAUTHCACHE

DBCC FLUSHAUTHCACHE flushes the database authentication cache maintained information regarding login and firewall rules for the current user database. This command cannot run in the master database, because the master database maintains the physical storage information regarding login and firewall rules.

Using ALTER DATABASE

You can also clear the plan cache for the current database using ALTER DATABASE as shown below. This is new in SQL Server 2016.

DBCC DROPCLEANBUFFERS

Use DBCC DROPCLEANBUFFERS to test queries with a cold buffer cache without shutting down and restarting the server.

Question

I came in this morning to find a SS2008 R2 64bit version 10.50.1600.1 instance yielding "Error: 802, There is insufficient memory available in the buffer pool. [SQLSTATE 42000]" and "SQLServer Error: 701, There is insufficient system memory in resource pool 'internal' to run this query. [SQLSTATE 42000]" in the log.

Answers

You need to identify what resources consume the buffer pool. What does the below return?

All replies

Did you see anything that was running during that time like any reindex or long running transactions on the databases.

image
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 1 2 3 4 5 6 7 8 9
8.3.21PHP Version3.15sRequest Duration2MBMemory UsageGET {post}Route
  • warninglog[03:26:38] LOG.warning: Creation of dynamic property Barryvdh\Debugbar\DataFormatter\QueryFormatter:...
  • warninglog[03:26:38] LOG.warning: Creation of dynamic property Barryvdh\Debugbar\DataFormatter\QueryFormatter:...
  • warninglog[03:26:38] LOG.warning: Callables of the form ["Swift_SmtpTransport", "Swift_Transport_EsmtpTranspor...
  • warninglog[03:26:38] LOG.warning: Creation of dynamic property Barryvdh\Debugbar\DataFormatter\SimpleFormatter...
  • warninglog[03:26:38] LOG.warning: Creation of dynamic property Barryvdh\Debugbar\DataFormatter\SimpleFormatter...
  • warninglog[03:26:38] LOG.warning: json_decode(): Passing null to parameter #1 ($json) of type string is deprec...
  • warninglog[03:26:38] LOG.warning: json_decode(): Passing null to parameter #1 ($json) of type string is deprec...
  • warninglog[03:26:38] LOG.warning: json_decode(): Passing null to parameter #1 ($json) of type string is deprec...
  • warninglog[03:26:38] LOG.warning: json_decode(): Passing null to parameter #1 ($json) of type string is deprec...
  • Booting (29.41ms)
  • Application (3.12s)
  • 1 x Application (99.05%)
    3.12s
    1 x Booting (0.93%)
    29.41ms
    7 templates were rendered
    • themes.DevBlog.content.post (resources/views/themes/DevBlog/content/post.blade.php)34blade
      Params
      0
      post
      1
      postContent
      2
      author
      3
      updated_at
      4
      bing_rich_snippet_text
      5
      bing_rich_snippet_link
      6
      bing_related_keywords
      7
      google_related_keywords
      8
      bing_news_title
      9
      bing_news_description
      10
      bing_videos
      11
      bing_images
      12
      bing_search_result_title
      13
      bing_search_result_description
      14
      bing_search_result_url
      15
      bing_paa_questions
      16
      bing_paa_answers
      17
      bing_slider_faq_questions
      18
      bing_slider_faq_answers
      19
      bing_pop_faq_questions
      20
      bing_pop_faq_answers
      21
      bing_tab_faq_questions
      22
      bing_tab_faq_answers
      23
      google_faq_questions
      24
      google_faq_answers
      25
      google_rich_snippet
      26
      google_search_result
      27
      indexedArray
      28
      total_images
      29
      total_videos
      30
      settings
      31
      url_current
      32
      menus
      33
      sidebar
    • themes.DevBlog.layouts.master (resources/views/themes/DevBlog/layouts/master.blade.php)41blade
      Params
      0
      __env
      1
      app
      2
      errors
      3
      post
      4
      postContent
      5
      author
      6
      updated_at
      7
      bing_rich_snippet_text
      8
      bing_rich_snippet_link
      9
      bing_related_keywords
      10
      google_related_keywords
      11
      bing_news_title
      12
      bing_news_description
      13
      bing_videos
      14
      bing_images
      15
      bing_search_result_title
      16
      bing_search_result_description
      17
      bing_search_result_url
      18
      bing_paa_questions
      19
      bing_paa_answers
      20
      bing_slider_faq_questions
      21
      bing_slider_faq_answers
      22
      bing_pop_faq_questions
      23
      bing_pop_faq_answers
      24
      bing_tab_faq_questions
      25
      bing_tab_faq_answers
      26
      google_faq_questions
      27
      google_faq_answers
      28
      google_rich_snippet
      29
      google_search_result
      30
      indexedArray
      31
      total_images
      32
      total_videos
      33
      settings
      34
      url_current
      35
      menus
      36
      sidebar
      37
      i
      38
      __currentLoopData
      39
      loop
      40
      item
    • themes.DevBlog.panels.head (resources/views/themes/DevBlog/panels/head.blade.php)41blade
      Params
      0
      __env
      1
      app
      2
      errors
      3
      post
      4
      postContent
      5
      author
      6
      updated_at
      7
      bing_rich_snippet_text
      8
      bing_rich_snippet_link
      9
      bing_related_keywords
      10
      google_related_keywords
      11
      bing_news_title
      12
      bing_news_description
      13
      bing_videos
      14
      bing_images
      15
      bing_search_result_title
      16
      bing_search_result_description
      17
      bing_search_result_url
      18
      bing_paa_questions
      19
      bing_paa_answers
      20
      bing_slider_faq_questions
      21
      bing_slider_faq_answers
      22
      bing_pop_faq_questions
      23
      bing_pop_faq_answers
      24
      bing_tab_faq_questions
      25
      bing_tab_faq_answers
      26
      google_faq_questions
      27
      google_faq_answers
      28
      google_rich_snippet
      29
      google_search_result
      30
      indexedArray
      31
      total_images
      32
      total_videos
      33
      settings
      34
      url_current
      35
      menus
      36
      sidebar
      37
      i
      38
      __currentLoopData
      39
      loop
      40
      item
    • themes.DevBlog.panels.header (resources/views/themes/DevBlog/panels/header.blade.php)41blade
      Params
      0
      __env
      1
      app
      2
      errors
      3
      post
      4
      postContent
      5
      author
      6
      updated_at
      7
      bing_rich_snippet_text
      8
      bing_rich_snippet_link
      9
      bing_related_keywords
      10
      google_related_keywords
      11
      bing_news_title
      12
      bing_news_description
      13
      bing_videos
      14
      bing_images
      15
      bing_search_result_title
      16
      bing_search_result_description
      17
      bing_search_result_url
      18
      bing_paa_questions
      19
      bing_paa_answers
      20
      bing_slider_faq_questions
      21
      bing_slider_faq_answers
      22
      bing_pop_faq_questions
      23
      bing_pop_faq_answers
      24
      bing_tab_faq_questions
      25
      bing_tab_faq_answers
      26
      google_faq_questions
      27
      google_faq_answers
      28
      google_rich_snippet
      29
      google_search_result
      30
      indexedArray
      31
      total_images
      32
      total_videos
      33
      settings
      34
      url_current
      35
      menus
      36
      sidebar
      37
      i
      38
      __currentLoopData
      39
      loop
      40
      item
    • themes.DevBlog.panels.navbar (resources/views/themes/DevBlog/panels/navbar.blade.php)41blade
      Params
      0
      __env
      1
      app
      2
      errors
      3
      post
      4
      postContent
      5
      author
      6
      updated_at
      7
      bing_rich_snippet_text
      8
      bing_rich_snippet_link
      9
      bing_related_keywords
      10
      google_related_keywords
      11
      bing_news_title
      12
      bing_news_description
      13
      bing_videos
      14
      bing_images
      15
      bing_search_result_title
      16
      bing_search_result_description
      17
      bing_search_result_url
      18
      bing_paa_questions
      19
      bing_paa_answers
      20
      bing_slider_faq_questions
      21
      bing_slider_faq_answers
      22
      bing_pop_faq_questions
      23
      bing_pop_faq_answers
      24
      bing_tab_faq_questions
      25
      bing_tab_faq_answers
      26
      google_faq_questions
      27
      google_faq_answers
      28
      google_rich_snippet
      29
      google_search_result
      30
      indexedArray
      31
      total_images
      32
      total_videos
      33
      settings
      34
      url_current
      35
      menus
      36
      sidebar
      37
      i
      38
      __currentLoopData
      39
      loop
      40
      item
    • themes.DevBlog.panels.footer (resources/views/themes/DevBlog/panels/footer.blade.php)41blade
      Params
      0
      __env
      1
      app
      2
      errors
      3
      post
      4
      postContent
      5
      author
      6
      updated_at
      7
      bing_rich_snippet_text
      8
      bing_rich_snippet_link
      9
      bing_related_keywords
      10
      google_related_keywords
      11
      bing_news_title
      12
      bing_news_description
      13
      bing_videos
      14
      bing_images
      15
      bing_search_result_title
      16
      bing_search_result_description
      17
      bing_search_result_url
      18
      bing_paa_questions
      19
      bing_paa_answers
      20
      bing_slider_faq_questions
      21
      bing_slider_faq_answers
      22
      bing_pop_faq_questions
      23
      bing_pop_faq_answers
      24
      bing_tab_faq_questions
      25
      bing_tab_faq_answers
      26
      google_faq_questions
      27
      google_faq_answers
      28
      google_rich_snippet
      29
      google_search_result
      30
      indexedArray
      31
      total_images
      32
      total_videos
      33
      settings
      34
      url_current
      35
      menus
      36
      sidebar
      37
      i
      38
      __currentLoopData
      39
      loop
      40
      item
    • themes.DevBlog.panels.scripts (resources/views/themes/DevBlog/panels/scripts.blade.php)41blade
      Params
      0
      __env
      1
      app
      2
      errors
      3
      post
      4
      postContent
      5
      author
      6
      updated_at
      7
      bing_rich_snippet_text
      8
      bing_rich_snippet_link
      9
      bing_related_keywords
      10
      google_related_keywords
      11
      bing_news_title
      12
      bing_news_description
      13
      bing_videos
      14
      bing_images
      15
      bing_search_result_title
      16
      bing_search_result_description
      17
      bing_search_result_url
      18
      bing_paa_questions
      19
      bing_paa_answers
      20
      bing_slider_faq_questions
      21
      bing_slider_faq_answers
      22
      bing_pop_faq_questions
      23
      bing_pop_faq_answers
      24
      bing_tab_faq_questions
      25
      bing_tab_faq_answers
      26
      google_faq_questions
      27
      google_faq_answers
      28
      google_rich_snippet
      29
      google_search_result
      30
      indexedArray
      31
      total_images
      32
      total_videos
      33
      settings
      34
      url_current
      35
      menus
      36
      sidebar
      37
      i
      38
      __currentLoopData
      39
      loop
      40
      item
    uri
    GET {post}
    middleware
    web, checkdate
    as
    post.show
    controller
    App\Http\Controllers\Frontend\json_data\PostController@show
    namespace
    where
    file
    app/Http/Controllers/Frontend/json_data/PostController.php:18-166
    7 statements were executed3.08s
    • select * from `posts` where `published_at` <= '2025-06-25 03:26:38' and `slug` = 'what-is-dbcc-freeproccache' and `posts`.`deleted_at` is null limit 1
      2.61ms/app/Providers/RouteServiceProvider.php:54receivinghelpdeskask
      Metadata
      Bindings
      • 0. 2025-06-25 03:26:38
      • 1. what-is-dbcc-freeproccache
      Backtrace
      • 15. /app/Providers/RouteServiceProvider.php:54
      • 18. /vendor/laravel/framework/src/Illuminate/Routing/Router.php:842
      • 19. Route binding:39
      • 20. /vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167
      • 21. /vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78
    • select * from `json_post_contents` where `json_post_contents`.`post_id` = 182737 and `json_post_contents`.`post_id` is not null and `rewrite_id` = 0
      3.57msmiddleware::checkdate:30receivinghelpdeskask
      Metadata
      Bindings
      • 0. 182737
      • 1. 0
      Backtrace
      • 19. middleware::checkdate:30
      • 20. /vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167
      • 21. /vendor/laravel/jetstream/src/Http/Middleware/ShareInertiaData.php:61
      • 22. /vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167
      • 23. /vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50
    • select * from `nova_menu_menus` where `slug` = 'header' limit 1
      240μs/vendor/outl1ne/nova-menu-builder/src/helpers.php:32receivinghelpdeskask
      Metadata
      Bindings
      • 0. header
      Backtrace
      • 15. /vendor/outl1ne/nova-menu-builder/src/helpers.php:32
      • 17. /vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
      • 18. /vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:45
      • 19. /vendor/laravel/framework/src/Illuminate/Routing/Route.php:261
      • 20. /vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
    • select * from `nova_menu_menu_items` where `nova_menu_menu_items`.`menu_id` = 1 and `nova_menu_menu_items`.`menu_id` is not null and `parent_id` is null order by `parent_id` asc, `order` asc, `name` asc
      270μs/vendor/outl1ne/nova-menu-builder/src/Models/Menu.php:35receivinghelpdeskask
      Metadata
      Bindings
      • 0. 1
      Backtrace
      • 19. /vendor/outl1ne/nova-menu-builder/src/Models/Menu.php:35
      • 20. /vendor/outl1ne/nova-menu-builder/src/helpers.php:33
      • 22. /vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
      • 23. /vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:45
      • 24. /vendor/laravel/framework/src/Illuminate/Routing/Route.php:261
    • select * from `nova_menu_menu_items` where `nova_menu_menu_items`.`parent_id` in (1) order by `order` asc
      230μs/vendor/outl1ne/nova-menu-builder/src/Models/Menu.php:35receivinghelpdeskask
      Metadata
      Backtrace
      • 24. /vendor/outl1ne/nova-menu-builder/src/Models/Menu.php:35
      • 25. /vendor/outl1ne/nova-menu-builder/src/helpers.php:33
      • 27. /vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
      • 28. /vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:45
      • 29. /vendor/laravel/framework/src/Illuminate/Routing/Route.php:261
    • select `id`, `post_title`, `slug` from `posts` where `status` = 'publish' and `posts`.`deleted_at` is null order by RAND() limit 10
      3.07s/app/View/Composers/SidebarView.php:22receivinghelpdeskask
      Metadata
      Bindings
      • 0. publish
      Backtrace
      • 14. /app/View/Composers/SidebarView.php:22
      • 15. /app/View/Composers/SidebarView.php:12
      • 16. /vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesEvents.php:124
      • 17. /vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesEvents.php:162
      • 20. /vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesEvents.php:177
    • select * from `fake_users` where `fake_users`.`id` = 36149 limit 1
      1.07msview::2dd102cf0462e89a4d4d8bc77355d767652bf9aa:15receivinghelpdeskask
      Metadata
      Bindings
      • 0. 36149
      Backtrace
      • 21. view::2dd102cf0462e89a4d4d8bc77355d767652bf9aa:15
      • 23. /vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:108
      • 24. /vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
      • 25. /vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php:69
      • 26. /vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61
    App\Models\FakeUser
    1
    Outl1ne\MenuBuilder\Models\MenuItem
    1
    Outl1ne\MenuBuilder\Models\Menu
    1
    App\Models\JsonPostContent
    1
    App\Models\Post
    11
        _token
        5Wi1wzxzWK9nMfwRlBAkpRa0jAWxkmETonX1fQQD
        _previous
        array:1 [ "url" => "https://receivinghelpdesk.com/ask/what-is-dbcc-freeproccache" ]
        _flash
        array:2 [ "old" => [] "new" => [] ]
        PHPDEBUGBAR_STACK_DATA
        []
        path_info
        /what-is-dbcc-freeproccache
        status_code
        200
        
        status_text
        OK
        format
        html
        content_type
        text/html; charset=UTF-8
        request_query
        []
        
        request_request
        []
        
        request_headers
        0 of 0
        array:25 [ "cookie" => array:1 [ 0 => "XSRF-TOKEN=eyJpdiI6ImNtMXFRODRGSGM1UnZqYlZENkJZd3c9PSIsInZhbHVlIjoidXJjK1EvaVcwdSszT05seVhLWkRkTGhpR2dOYUJvTDM4bXpDejdMS09JQTRTRTNSR2hLKy9rcWZ3WENJemFON1haNy9HeHUreHl5WjNEbFMvTFJnNlRsUUpDdmtVNUNkd01YNnFxeStpd3NGc3lXR1J5SWUxL3lWMnA4NE9ObmEiLCJtYWMiOiJiNzNmM2FlMmU4MDFkMGI4YmVhN2YwNjczY2M4NmE1NmJkZWIxZTJkZjY3NDg0NGZlYjU3NzBjZmRmYjZjN2VlIiwidGFnIjoiIn0%3D; askhelpdesk_session=eyJpdiI6InVxcnV3RmtIVkRkYkxrNVp4M3pmVmc9PSIsInZhbHVlIjoiUWRsdEhTNERzeHNnVm96NlFubDJuTzlGdncvU0cvT3ozNS9WSUY2WlVDc1c1ckJ0Zm5KT212SkV6U29EMlRWekk0VVhaTHNlZDcvaWU4cDJuZDZmZm9jUFM0clVJMXpMSytBeWFET0VnZEJ6UzJGbGNGSTVtZExNUEVwL3Ezb3giLCJtYWMiOiJlY2M0ZTBjOGU5NTE1MDYzZTYyYmNhNGY4Y2UyMDBkYjM5ZDViNmUxMTlkOTc5ZDlhMjY4ZTQ2YjU5ZTQwZjYxIiwidGFnIjoiIn0%3D; _pk_id.64.7c30=2be05434ceaaf277.1750802194.; _pk_ses.64.7c30=1XSRF-TOKEN=eyJpdiI6ImNtMXFRODRGSGM1UnZqYlZENkJZd3c9PSIsInZhbHVlIjoidXJjK1EvaVcwdSszT05seVhLWkRkTGhpR2dOYUJvTDM4bXpDejdMS09JQTRTRTNSR2hLKy9rcWZ3WENJemFON1haNy9He" ] "cf-ipcountry" => array:1 [ 0 => "US" ] "cf-connecting-ip" => array:1 [ 0 => "216.73.216.2" ] "cdn-loop" => array:1 [ 0 => "cloudflare; loops=1" ] "sec-fetch-mode" => array:1 [ 0 => "navigate" ] "sec-fetch-site" => array:1 [ 0 => "none" ] "accept" => array:1 [ 0 => "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7" ] "user-agent" => array:1 [ 0 => "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" ] "upgrade-insecure-requests" => array:1 [ 0 => "1" ] "sec-ch-ua-platform" => array:1 [ 0 => ""Windows"" ] "sec-ch-ua-mobile" => array:1 [ 0 => "?0" ] "sec-ch-ua" => array:1 [ 0 => ""Chromium";v="130", "HeadlessChrome";v="130", "Not?A_Brand";v="99"" ] "cache-control" => array:1 [ 0 => "no-cache" ] "pragma" => array:1 [ 0 => "no-cache" ] "accept-encoding" => array:1 [ 0 => "gzip, br" ] "cf-ray" => array:1 [ 0 => "954f79eeff90b98a-ORD" ] "priority" => array:1 [ 0 => "u=0, i" ] "sec-fetch-dest" => array:1 [ 0 => "document" ] "sec-fetch-user" => array:1 [ 0 => "?1" ] "cf-visitor" => array:1 [ 0 => "{"scheme":"https"}" ] "connection" => array:1 [ 0 => "close" ] "x-forwarded-proto" => array:1 [ 0 => "https" ] "x-forwarded-for" => array:1 [ 0 => "216.73.216.2, 172.69.7.50" ] "x-server-addr" => array:1 [ 0 => "154.12.239.204" ] "host" => array:1 [ 0 => "receivinghelpdesk.com" ] ]
        request_server
        0 of 0
        array:56 [ "USER" => "runcloud" "HOME" => "/home/runcloud" "SCRIPT_NAME" => "/ask/index.php" "REQUEST_URI" => "/ask/what-is-dbcc-freeproccache" "QUERY_STRING" => "" "REQUEST_METHOD" => "GET" "SERVER_PROTOCOL" => "HTTP/1.0" "GATEWAY_INTERFACE" => "CGI/1.1" "REDIRECT_URL" => "/ask/what-is-dbcc-freeproccache" "REMOTE_PORT" => "55580" "SCRIPT_FILENAME" => "/home/runcloud/webapps/ReceivingHelpDesk/ask/index.php" "SERVER_ADMIN" => "you@example.com" "CONTEXT_DOCUMENT_ROOT" => "/home/runcloud/webapps/ReceivingHelpDesk/" "CONTEXT_PREFIX" => "" "REQUEST_SCHEME" => "http" "DOCUMENT_ROOT" => "/home/runcloud/webapps/ReceivingHelpDesk/" "REMOTE_ADDR" => "172.69.7.50" "SERVER_PORT" => "80" "SERVER_ADDR" => "127.0.0.1" "SERVER_NAME" => "receivinghelpdesk.com" "SERVER_SOFTWARE" => "Apache/2.4.63 (Unix) OpenSSL/1.1.1f" "SERVER_SIGNATURE" => "" "LD_LIBRARY_PATH" => "/RunCloud/Packages/apache2-rc/lib" "PATH" => "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" "HTTP_COOKIE" => "XSRF-TOKEN=eyJpdiI6ImNtMXFRODRGSGM1UnZqYlZENkJZd3c9PSIsInZhbHVlIjoidXJjK1EvaVcwdSszT05seVhLWkRkTGhpR2dOYUJvTDM4bXpDejdMS09JQTRTRTNSR2hLKy9rcWZ3WENJemFON1haNy9HeHUreHl5WjNEbFMvTFJnNlRsUUpDdmtVNUNkd01YNnFxeStpd3NGc3lXR1J5SWUxL3lWMnA4NE9ObmEiLCJtYWMiOiJiNzNmM2FlMmU4MDFkMGI4YmVhN2YwNjczY2M4NmE1NmJkZWIxZTJkZjY3NDg0NGZlYjU3NzBjZmRmYjZjN2VlIiwidGFnIjoiIn0%3D; askhelpdesk_session=eyJpdiI6InVxcnV3RmtIVkRkYkxrNVp4M3pmVmc9PSIsInZhbHVlIjoiUWRsdEhTNERzeHNnVm96NlFubDJuTzlGdncvU0cvT3ozNS9WSUY2WlVDc1c1ckJ0Zm5KT212SkV6U29EMlRWekk0VVhaTHNlZDcvaWU4cDJuZDZmZm9jUFM0clVJMXpMSytBeWFET0VnZEJ6UzJGbGNGSTVtZExNUEVwL3Ezb3giLCJtYWMiOiJlY2M0ZTBjOGU5NTE1MDYzZTYyYmNhNGY4Y2UyMDBkYjM5ZDViNmUxMTlkOTc5ZDlhMjY4ZTQ2YjU5ZTQwZjYxIiwidGFnIjoiIn0%3D; _pk_id.64.7c30=2be05434ceaaf277.1750802194.; _pk_ses.64.7c30=1XSRF-TOKEN=eyJpdiI6ImNtMXFRODRGSGM1UnZqYlZENkJZd3c9PSIsInZhbHVlIjoidXJjK1EvaVcwdSszT05seVhLWkRkTGhpR2dOYUJvTDM4bXpDejdMS09JQTRTRTNSR2hLKy9rcWZ3WENJemFON1haNy9He" "HTTP_CF_IPCOUNTRY" => "US" "HTTP_CF_CONNECTING_IP" => "216.73.216.2" "HTTP_CDN_LOOP" => "cloudflare; loops=1" "HTTP_SEC_FETCH_MODE" => "navigate" "HTTP_SEC_FETCH_SITE" => "none" "HTTP_ACCEPT" => "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7" "HTTP_USER_AGENT" => "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "HTTP_UPGRADE_INSECURE_REQUESTS" => "1" "HTTP_SEC_CH_UA_PLATFORM" => ""Windows"" "HTTP_SEC_CH_UA_MOBILE" => "?0" "HTTP_SEC_CH_UA" => ""Chromium";v="130", "HeadlessChrome";v="130", "Not?A_Brand";v="99"" "HTTP_CACHE_CONTROL" => "no-cache" "HTTP_PRAGMA" => "no-cache" "HTTP_ACCEPT_ENCODING" => "gzip, br" "HTTP_CF_RAY" => "954f79eeff90b98a-ORD" "HTTP_PRIORITY" => "u=0, i" "HTTP_SEC_FETCH_DEST" => "document" "HTTP_SEC_FETCH_USER" => "?1" "HTTP_CF_VISITOR" => "{"scheme":"https"}" "HTTP_CONNECTION" => "close" "HTTP_X_FORWARDED_PROTO" => "https" "HTTP_X_FORWARDED_FOR" => "216.73.216.2, 172.69.7.50" "HTTP_X_SERVER_ADDR" => "154.12.239.204" "HTTP_HOST" => "receivinghelpdesk.com" "HTTPS" => "on" "REDIRECT_STATUS" => "200" "REDIRECT_HTTPS" => "on" "FCGI_ROLE" => "RESPONDER" "PHP_SELF" => "/ask/index.php" "REQUEST_TIME_FLOAT" => 1750802198.8955 "REQUEST_TIME" => 1750802198 ]
        request_cookies
        0 of 0
        array:4 [ "XSRF-TOKEN" => "5Wi1wzxzWK9nMfwRlBAkpRa0jAWxkmETonX1fQQD" "askhelpdesk_session" => "aTPmO18Ed8wQpYIrElJ24FaS495aZKRli2ceYGoO" "_pk_id_64_7c30" => null "_pk_ses_64_7c30" => null ]
        response_headers
        0 of 0
        array:7 [ "content-type" => array:1 [ 0 => "text/html; charset=UTF-8" ] "cache-control" => array:1 [ 0 => "private, must-revalidate" ] "date" => array:1 [ 0 => "Tue, 24 Jun 2025 21:56:38 GMT" ] "pragma" => array:1 [ 0 => "no-cache" ] "expires" => array:1 [ 0 => -1 ] "set-cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6IkkvL3BkL2pISEplWTlDSHBKNlM4QkE9PSIsInZhbHVlIjoidVc4UzFzK1lKcWEwZ2xDcXpWQWV6ZFFVUWFITjFTQUtlaEpla0pqWDhrMVBaaThUUHRYS2tubXIvSFpwMHhDd3ExakhwaFRyL201aTVtVTJUeDlZTTZPb2IrVjUzNm4yME1QYisraWJYSXZtejJhVTRMYitiYnVSNldYd2FPaWciLCJtYWMiOiIwMWMwOTFkZWUyMjhmZTIxMzdlMjZmZTI0NjE4MjVhNzRhNWUxOThkM2IyZjYwNzU2NWI3ODAzNDNmMzI2NWQzIiwidGFnIjoiIn0%3D; expires=Tue, 24-Jun-2025 23:56:42 GMT; Max-Age=7200; path=/; samesite=laxXSRF-TOKEN=eyJpdiI6IkkvL3BkL2pISEplWTlDSHBKNlM4QkE9PSIsInZhbHVlIjoidVc4UzFzK1lKcWEwZ2xDcXpWQWV6ZFFVUWFITjFTQUtlaEpla0pqWDhrMVBaaThUUHRYS2tubXIvSFpwMHhDd3Exakhwa" 1 => "askhelpdesk_session=eyJpdiI6IkFaSkt3K0lWUmYyRmZIcko1c3NDQkE9PSIsInZhbHVlIjoiK2doZ2pGeWJjYlZVZHdJb0RsWVBhc2E3a2s0L0sxcnJqeXBWd0NudlMzaVJTdVlBaENxTFBEQmRRellzbmZhZDA5Zi85T3RPR05zLzRrbGIyLzNHSnB6MFJKOWs4U2wyUlJJNWtsNnBTNFNUYS8vZnY3OGFYK1YzOEwwdnZuNG8iLCJtYWMiOiIyZDE3ZjMzOWNlMDMyZDNlNWFkZmUwYzY2Y2FiNDk3NWI3M2E4Y2FiNTdmNzIxN2MxMGUwNzVjOTA5MzVjMDg0IiwidGFnIjoiIn0%3D; expires=Tue, 24-Jun-2025 23:56:42 GMT; Max-Age=7200; path=/; httponly; samesite=laxaskhelpdesk_session=eyJpdiI6IkFaSkt3K0lWUmYyRmZIcko1c3NDQkE9PSIsInZhbHVlIjoiK2doZ2pGeWJjYlZVZHdJb0RsWVBhc2E3a2s0L0sxcnJqeXBWd0NudlMzaVJTdVlBaENxTFBEQmRRellzbmZh" ] "Set-Cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6IkkvL3BkL2pISEplWTlDSHBKNlM4QkE9PSIsInZhbHVlIjoidVc4UzFzK1lKcWEwZ2xDcXpWQWV6ZFFVUWFITjFTQUtlaEpla0pqWDhrMVBaaThUUHRYS2tubXIvSFpwMHhDd3ExakhwaFRyL201aTVtVTJUeDlZTTZPb2IrVjUzNm4yME1QYisraWJYSXZtejJhVTRMYitiYnVSNldYd2FPaWciLCJtYWMiOiIwMWMwOTFkZWUyMjhmZTIxMzdlMjZmZTI0NjE4MjVhNzRhNWUxOThkM2IyZjYwNzU2NWI3ODAzNDNmMzI2NWQzIiwidGFnIjoiIn0%3D; expires=Tue, 24-Jun-2025 23:56:42 GMT; path=/XSRF-TOKEN=eyJpdiI6IkkvL3BkL2pISEplWTlDSHBKNlM4QkE9PSIsInZhbHVlIjoidVc4UzFzK1lKcWEwZ2xDcXpWQWV6ZFFVUWFITjFTQUtlaEpla0pqWDhrMVBaaThUUHRYS2tubXIvSFpwMHhDd3Exakhwa" 1 => "askhelpdesk_session=eyJpdiI6IkFaSkt3K0lWUmYyRmZIcko1c3NDQkE9PSIsInZhbHVlIjoiK2doZ2pGeWJjYlZVZHdJb0RsWVBhc2E3a2s0L0sxcnJqeXBWd0NudlMzaVJTdVlBaENxTFBEQmRRellzbmZhZDA5Zi85T3RPR05zLzRrbGIyLzNHSnB6MFJKOWs4U2wyUlJJNWtsNnBTNFNUYS8vZnY3OGFYK1YzOEwwdnZuNG8iLCJtYWMiOiIyZDE3ZjMzOWNlMDMyZDNlNWFkZmUwYzY2Y2FiNDk3NWI3M2E4Y2FiNTdmNzIxN2MxMGUwNzVjOTA5MzVjMDg0IiwidGFnIjoiIn0%3D; expires=Tue, 24-Jun-2025 23:56:42 GMT; path=/; httponlyaskhelpdesk_session=eyJpdiI6IkFaSkt3K0lWUmYyRmZIcko1c3NDQkE9PSIsInZhbHVlIjoiK2doZ2pGeWJjYlZVZHdJb0RsWVBhc2E3a2s0L0sxcnJqeXBWd0NudlMzaVJTdVlBaENxTFBEQmRRellzbmZh" ] ]
        session_attributes
        0 of 0
        array:4 [ "_token" => "5Wi1wzxzWK9nMfwRlBAkpRa0jAWxkmETonX1fQQD" "_previous" => array:1 [ "url" => "https://receivinghelpdesk.com/ask/what-is-dbcc-freeproccache" ] "_flash" => array:2 [ "old" => [] "new" => [] ] "PHPDEBUGBAR_STACK_DATA" => [] ]