Viewing 15 posts - 736 through 750 (of 7,472 total)
AFAIK you cannot disable an index on SQL2000 !
syntax "alter INDEX myix ON myschema.mytable disable;" only works as of SQL2005 ...
And even if you can, DO NOT disable index id...
October 18, 2021 at 12:47 pm
What are you trying to do with notification services ?
Chances are you can do it more easy and less intrusive on your server / instance using Extended Events !
With...
October 18, 2021 at 12:34 pm
I hope you also realize the downsides of using that isolation level !
October 15, 2021 at 7:11 am
I used to use Notification services for this, but recently we had major down time due to an overload of connections and SSB-queues not getting processed on time.
We are now...
October 7, 2021 at 9:18 am
you need a query.
If you build a view, you have no "control" over how it gets used. I mean maybe it gets joined with in queries, ...
if you build a...
October 2, 2021 at 4:40 pm
Have you checked to use Extended Events to capture login information without having to bother for file sizes and queue sizes?
Have a job process the captured file(s) every x minutes
September 21, 2021 at 1:37 pm
As already stated, a unique index or a unique constraint are your options
ref:...
September 7, 2021 at 7:21 am
Even when adding a new file to a filegroup, SQLServer will not balance the content of that filegroup to all files of that filegroup just like that.
If you would want...
September 3, 2021 at 9:03 am
You cannot reclaim disk space without shrinking the database, except for tempdb which is being reset to its original size after stop/start of the instance.
Alternative is to create a new...
September 1, 2021 at 7:16 am
Indeed, Jeff.
Those were the timing for the migration of the tables.
I'm still working to see if the applications actually have performance gains too.
Gut feeling says it should, but we'll only...
August 26, 2021 at 5:54 am
I prepared all filegroups and files and preallocated the needed space.
These are the results of my test on my test server ( old + slow spindles )
August 24, 2021 at 7:14 am
wow, Thank you Jeff, for your tests and posting the results.
As always, YMMV, so only own situation tests will provide a good insight.
Hoping such tests confirm the handed numbers and...
August 23, 2021 at 9:07 am
August 23, 2021 at 8:30 am
They are still image and text data types (legacy industrial tech "we will not change it for you" salesperson ). Out of row by default if I'm correct., but indeed,...
August 20, 2021 at 12:48 pm
That's indeed what I've been thinking, but I have not that much experience when it comes to storing LOBs ( up to 1GB ) in the database, so I've been...
August 20, 2021 at 11:48 am
Viewing 15 posts - 736 through 750 (of 7,472 total)