Viewing 15 posts - 1,351 through 1,365 (of 2,654 total)
can you post table and indexes ddl for that table.
September 23, 2020 at 12:32 pm
if you need to add a trace flag you do it through configuration manager so it is there whenever the instance starts.
net start does not support parameters - it will...
September 22, 2020 at 9:34 pm
you need 'tempdb..#xxx' when checking for object existence.
e.g. if object_id('tempdb..#xxx') is not null drop table #xxx;
other than the case above you do not need to reference tempdb.. and you can...
September 22, 2020 at 6:13 pm
following will help.
1 - get ride of those nolock
if you really have to use them and your business signs off on the possibility of having bad data being supplied to...
September 22, 2020 at 8:20 am
one question that may help this.
why so many updates? and how are they being done - SQL please, not just explaining.
and potentially why aren't some being done as part of...
September 17, 2020 at 9:51 pm
Day in day out. Somehow 2 weeks ago the process is 30 to 40...
September 17, 2020 at 4:33 pm
It doesn't sound like a memory issue, but if you are sure it is you could reduce the memory SQL Server uses just before the SSIS packages run and...
September 14, 2020 at 3:58 pm
and is SSIS running packages through SSIS Catalog, filesystem or msdb? 32 bit or 64 bit - and are you access databases from other vendors using their drivers (Oracle, DB2...
September 14, 2020 at 2:09 pm
easy - a select with a where with a update with a replace and a where clause.
what have you tried so far and what issues did you get ? this...
September 13, 2020 at 8:44 pm
which adds to justify not using nolock unless absolutely required and with knowledge that such cases will not occur.
September 13, 2020 at 1:02 pm
this google gets you a few hits https://www.google.com/search?q=powershell+change+sql+server+service+account&oq=powershell+change+sql+ser&aqs=chrome.0.0l2j69i57j0l4j69i60.7272j0j7&sourceid=chrome&ie=UTF-8
but I advise you to use GMSA accounts instead of username/password - safer and you won't have to worry about them anymore.
September 10, 2020 at 5:22 pm
Developer = Enterprise - just not licensed for production use.
no other limits neither differences.
September 2, 2020 at 1:37 pm
I do not see any issues, but I would use developer edition.
taking in consideration who you are advising this to I have to clarify this - Developer edition CAN't...
August 31, 2020 at 11:34 pm
neither is good - but having the single set statement just makes it easier for you to change your code when time comes your users complain about bad data
August 31, 2020 at 7:39 am
it does not work like that - it is not the "login name" that counts as a user, but the user of the application (or device) that connects to the...
August 29, 2020 at 4:54 pm
Viewing 15 posts - 1,351 through 1,365 (of 2,654 total)