# Raw Function limited to 100

**URL:** https://meta.discourse.org/t/raw-function-limited-to-100/233626
**Category:** Support
**Created:** [July 22, 2022, 8:23am UTC](https://meta.discourse.org/t/raw-function-limited-to-100/233626 "2022-07-22T08:23:11Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [July 22, 2022, 10:27am UTC](https://meta.discourse.org/t/raw-function-limited-to-100/233626/3 "2022-07-22T10:27:49Z")

</div>

You can also use the [data explorer](https://meta.discourse.org/t/discourse-data-explorer/32566) too if you there are a lot of pages. I think something like this would work:

```plaintext
-- [params]
-- int :topic_id

SELECT p.topic_id,
       p.post_number, 
       p.raw,
       p.cooked
FROM posts p
WHERE p.topic_id = :topic_id
ORDER BY p.post_number ASC

```

(Though that would only be useful to admins, or the groups the admin allowed to access the query, so may not be applicable in this case)

---

_[View the full topic](https://meta.discourse.org/t/raw-function-limited-to-100/233626)._
