Viewing 15 posts - 1,096 through 1,110 (of 2,701 total)
from a functionality point of view they are exactly the same.
its just licensing that is different - install is also same just different license key which determines how cpu/core is...
September 24, 2021 at 3:52 pm
CAST(SUM(p.QTY * 1.0) / SUM (r.QTY) AS decimal (5,2)) AS 'Forecast Accuracy'
by "forcing" one of the operators to be a decimal the results is now a decimal.
September 23, 2021 at 2:09 am
no
what you need to do is not add them to any role that allows data changes (or ddl changes) - e.g. do not add them to db_datawritter or db_ddladmin -...
September 21, 2021 at 5:50 pm
first step is to change the owner of the database to be either a lowlevel SQL Login created just for that or to SA
ALTER AUTHORIZATION ON database::testdb TO DisabledLogin;
then create...
September 21, 2021 at 3:53 pm
if the index is partitioned then yes.
alter index indexname on tablename rebuild partition = 3 ...
September 16, 2021 at 4:24 pm
@homrebrew01
you are right. Even same 2019 versions giving me an error on some servers and some servers it's working fine and sending an alert. something fishy going with the...
September 15, 2021 at 4:30 pm
Yes and no - majority of cases the merge by the second developer will be without conflicts - only in a few cases will the developer be required to manually...
September 14, 2021 at 7:59 pm
one way of doing it
Merge manager should decide (within team) which change should go first
developer A
--> Local ...
September 14, 2021 at 6:17 pm
regarding SHA1 - it is deprecated for crypt functions - for this type of uses and because it will be on SQL for a very long time I would not...
September 14, 2021 at 8:36 am
you need to parse the output - and ensure that you deal with the quirks of different versions of servers/locales as you are now finding out
also fsutil needs administrator privs...
September 13, 2021 at 5:13 pm
depending on what the process is it can either take awhile or require a SQL Instance restart.
Attempting to restart SQL Server instance is a quite common mistake...
September 9, 2021 at 7:25 am
depending on what the process is it can either take awhile or require a SQL Instance restart.
Multiple possible reasons depending on what the session was executing.
September 8, 2021 at 10:26 pm
did you look at the contents of the string as I stated?
did you count the characters and see if your substring matches that output?
are the separaters a "," or a...
September 8, 2021 at 9:03 pm
that likely has different output on the server with sql 2019 - you should be able to figure out yourself what the issue is as the convert is happening on...
September 8, 2021 at 8:01 pm
look at
and
https://sqlrambling.net/2018/04/24/using-a-certificate-to-sign-a-stored-procedure/
one way of allowing particular functions to work while not granting the permissions directly.
September 8, 2021 at 4:00 pm
Viewing 15 posts - 1,096 through 1,110 (of 2,701 total)