Viewing 15 posts - 76 through 90 (of 159 total)
Waiting for locks is normal in SQL Server (or any other relational db).
Whether the waits are excessive is a different q.
Since you've provided no details, to reduce bad effects...
November 19, 2020 at 12:58 am
Locks are a required part of SQL Server. You wouldn't want 2 queries updating a single piece of data at the exact same time. Much better for them to...
November 19, 2020 at 12:46 am
Thank you Adi Cohn for your kind help!
November 16, 2020 at 1:16 pm
It will show you details only on plans that exist in the query cache. As soon as a query plan is being deleted from the query plan, you won't...
November 16, 2020 at 12:30 am
Ah, but it appears that may be operating under a really bad premise. Changing a VARCHAR(200) to a VARCHAR(100) will, by itself, DO NOTHING to save on space. The...
November 14, 2020 at 12:53 am
I want if we can know how many pieces of data can be saved for each data page. thanks!
Thank you but the question above is basically just...
November 13, 2020 at 12:38 am
we can use sp_spaceused to know how many space reservred by a table and know how many spaces for data space and index space, but if there is...
November 11, 2020 at 1:40 pm
Google or your favourite search engine is your friend.
20598 - row not found at subscriber,
0x07.... means if your running SQL7 or above
Thank you Anthony.green!
November 10, 2020 at 9:17 am
Jeff Moden, thank you for your help and guidance !
November 10, 2020 at 6:27 am
SQL row/page compression is typically extremely helpful to reduce disk space. Before SQL 2016, I believe you must have Enterprise Edition for it to be available.
Yes, I know sql...
November 10, 2020 at 2:15 am
In the main table storage area, a row will be on one and only one page. Any other data for that row must go to overflow pages.
-1- There's not...
November 10, 2020 at 1:51 am
Slight bit of misunderstanding there. Let's say we have a VARCHAR(50). Now let's say that our data stored there is 'dog'. It doesn't use storage out to 50 characters....
November 9, 2020 at 11:45 pm
For most of us, most of the time, that's way too much detail. It begs the question, what problem are you really trying to solve.
However, if you want crazy...
November 9, 2020 at 3:04 pm
Additionally understanding that the WHERE clauses and JOIN criteria (if any) for data manipulation queries are subject to all the same rules as a SELECT query. Something like a...
November 9, 2020 at 2:10 pm
Viewing 15 posts - 76 through 90 (of 159 total)