Viewing 15 posts - 31 through 45 (of 78 total)
I don't think that the server is creating new column to an existing table as sparse columns. Creating column as sparse columns has a big effect on the storage...
July 20, 2021 at 6:59 am
One more option is to use Audit. I have to admit that I didn't use it for a very long time (few years). The advantage that it has is that...
July 7, 2021 at 5:56 am
Can you write a small script that creates your table, insert some data and show us the results that you expect to get? It would help us make sure that...
July 5, 2021 at 2:16 pm
Have to admit that I don't understand why you have to move the files from E to F and then back when you want to enlarge disk C. If I...
July 5, 2021 at 2:12 pm
Change you where clause to use like and wild cards instead of an equal sign. Also use and instead of or in the where clause:
WHERE [Cars Club]...
July 5, 2021 at 7:00 am
As far as I know, you can not config the division of memory between plan cache and data cache. This is done by the server.
SQL server decided which memory page...
July 4, 2021 at 11:51 am
Each index has a price in storage and in the amount of time that insert will take (some of them can save us time for delete and updates but some...
July 1, 2021 at 9:41 am
Included columns are very helpful for avoiding lookups, but it is up to you to decide if you should avoid lookups. This depends on few factors. For example how much...
July 1, 2021 at 9:17 am
A while ago I was looking for a new job. A friend of mine connected me with a company that he worked at their DBA team at the past. After...
June 30, 2021 at 6:44 am
I would BCP the data out and then BCP it in to the test database. Another option is to use SSIS to import the selected tables. There is also an...
June 29, 2021 at 8:43 am
Since I don't have your table, I couldn't check it, but I think that even if it doesn't work, it can point you to the direction that you need
June 24, 2021 at 2:44 pm
You don't have to update statistics after rebuilding indexes. When you rebuild an index SQL server also rebuilds it's statistics. Since it reads all the records in the table, the...
June 24, 2021 at 6:25 am
When I worked also as production DBA, I did set autogrowth for databases's files, but I also had a job which ran every night and checked all databases, and if...
June 15, 2021 at 6:22 am
The fact that the 2 queries are the same doesn't guarantee that you'll have the same query plan. The query plan depends on the data in the tables and the...
June 14, 2021 at 1:30 pm
Viewing 15 posts - 31 through 45 (of 78 total)