Viewing 15 posts - 1 through 15 (of 23 total)
This was after the database restore and at the end of the log restore. Only thing in the logs are lots and lots of IO waits. I did not use...
August 6, 2018 at 12:07 pm
xp_cmdshell being disabled is a matter of choice and frankly overkill. You can simply enable it, use it and disable it if security folks are that paranoid. I've worked at...
October 8, 2015 at 5:15 am
You can monitor network share space very simply. Just use the DIR \\sharename cmd and the last value is free space 🙂
EG.
DECLARE @cmd VARCHAR(2000)
SET @cmd = 'DIR "\\SHARENAME"'
EXEC xp_cmdshell @cmd
October 8, 2015 at 2:57 am
haha no worries, I guess with the multi-national nature of this site it is well worth remembering to be absolutely clear on terminology 🙂
December 6, 2013 at 4:08 am
I know that 🙂 ok fussy, instance resource! happy now 🙂
December 6, 2013 at 4:00 am
Are you sure this senior dev doesn't mean something like a work or staging database? i.e. something pre-production and isolated on a different drive? That I could understand.
As Gail states,...
December 4, 2013 at 1:51 am
Sounds like you're trying to add a column mid-table which is causing a table rebuild and hence it won't automatically do this unless you de-select the option from => Tools...
December 4, 2013 at 1:43 am
Well your table definition has changed then as this doesn't match the 2nd picture you posted. i.e. that column should allow NULLs according to picture, but it doesn't...
December 4, 2013 at 1:36 am
Dooh! Pict 1 old! Pict 2 new!
anyway, still think the inserts wrong unless you just want everything else empty. If it was an identity column though surely you wouldn't receive...
December 3, 2013 at 6:34 am
No I don't. I think you need to revisit what you are trying to do.
Perhaps you should be UPDATE'ing that field? Your INSERT statement implies you just want to...
December 3, 2013 at 5:48 am
It looks like your insert statement is failing as that's the primary key for the table and it will not allow NULL values.
December 3, 2013 at 4:28 am
Either way, on assessing your best fit you'd have to compare performance over a defined time period in order to really find your best fit for this setting. And after...
May 7, 2010 at 2:27 am
As I understand it, with MSCRM the performance white paper recommends you use MAXDOP = 1 due to how MSCRM works/performs.
I'd advise you look up these documents as there are...
May 6, 2010 at 9:19 am
I think its worth clarifying that this is the sort of db you never expect to see under any sort of serious load. With that in mind ppl may well...
April 23, 2010 at 4:41 am
Great article and in my experience with table variables its usually devs not implementing them properly in complex queries 😉 I shall ensure part of this article goes into our...
April 9, 2010 at 4:13 am
Viewing 15 posts - 1 through 15 (of 23 total)