Viewing 15 posts - 76 through 90 (of 154 total)
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
about this topic , do you have any other solution? thanks!
November 9, 2020 at 6:48 am
Thank you Jeff Moden for you kind help!
you said "Understanding that there are at least 6 different Insert/Update patterns and the 4 of them are seriously affected by "ExpAnsive" updates....
November 9, 2020 at 6:43 am
I used SQL profile to trace SQL Statement and found user use insert bulk to insert data for a table, but the sql statment is too long (over...
November 9, 2020 at 2:57 am
INSERT BULK is from .Net SqlBulkCopy class, so someone has coded an application which is using that class to load in some data
Thank you, this article of...
November 9, 2020 at 2:57 am
Viewing 15 posts - 76 through 90 (of 154 total)