Viewing 15 posts - 16 through 30 (of 66 total)
I have experience with two large systems - one with FILESTREAM blobs and the other using normal blobs. Both ultimately got migrated out of the database into an object store. ...
October 27, 2023 at 9:58 pm
I wouldn't store the fully qualified path for each file. The files will probably need to be moved to a different location at some point. I'd store a relative reference...
October 27, 2023 at 8:28 pm
I have some experience in this area and I would advise against storing files in the database - using FILESTREAM or otherwise. This blog post might be worth a...
October 26, 2023 at 8:09 pm
I created a monitoring tool, DBA Dash that collects VLF counts for your SQL instances. The GUI has a nice report that shows you the maximum VLF count for...
October 15, 2023 at 9:45 pm
I had a 160TB db at one point. A large % was blob data and the associated table was INSERT only. We also had another activity log table that was...
October 7, 2023 at 7:55 am
I wrote my own monitoring solution that has recently gone open source. It might be worth a look (I'm biased, but it's free and open source):
https://github.com/trimble-oss/dba-dash
I would also take a...
January 27, 2022 at 10:30 pm
Yeah - I'm using SMO to script the database objects.
Hope this helps,
David
October 15, 2012 at 1:11 pm
adonetok (5/24/2012)
I set one column as varchar(8000) but user still complain that some input was cut off.Does varchar(8000) really store 8000 characters?
VARCHAR(8000) can store 8000 characters. You can prove...
May 24, 2012 at 1:51 pm
michael bourgon (5/22/2012)
May 22, 2012 at 12:17 pm
valentijn.scholten (4/19/2012)
Sounds like a great tool.Will it remain free when a Final version is available?
Thanks.
I don't have any plans to charge people for the application and it's unlikely that there...
April 19, 2012 at 12:45 pm
Jeff Moden (3/16/2012)
Shifting gears a bit, I'm concerned about your "busy" Temp DB. This is frequently caused...
March 16, 2012 at 10:47 am
Hi Jeff,
That solution would work, but it requires changes to the way the application works. The application currently calls one stored procedure to do the initial insert and another...
March 16, 2012 at 2:18 am
PS
The transactionid solution is really just a different version of the flag based solution. It seems a bit crazy that you need VIEW SERVER STATE permissions to get your...
March 15, 2012 at 8:02 am
Hi,
Thanks for the suggestions.
Vedran - That's more or less the same solution that I came up with, but it's good to see that someone else was thinking along the same...
March 15, 2012 at 7:35 am
LutzM (3/14/2012)
If it needs to...
March 14, 2012 at 2:37 pm
Viewing 15 posts - 16 through 30 (of 66 total)