Viewing 15 posts - 1,276 through 1,290 (of 2,701 total)
no update would not be like that - but as said you do not need to do the update.
update ca1
set ClientNotes = replace....
from ClientDetails as ca1
but that...
February 28, 2021 at 4:35 pm
Common is likely because it can be used anywhere on the same query multiple times unlike a derived table/subquery.
February 28, 2021 at 2:34 pm
why do you need to remove them to extract them?
surely you are extracting into a properly defined CSV file and if so that does not matter - unless you are...
February 28, 2021 at 12:52 pm
no benefit - Express will use a maximum of 1 GB for database engine
February 25, 2021 at 11:01 am
question is incorrect - but I guessed what you wanted.
February 22, 2021 at 12:26 am
I think that even you are capable of doing a "update t set firstname = 'xxxx' from mytbl" without the need to give you examples from the net.
February 17, 2021 at 9:21 am
if the application is going to remain active (or while it remains active until its usage/data is migrated to another application) I would leave it on its own database -...
February 16, 2021 at 1:49 pm
you changed something on your script as the output you had given before meant the script supplied by Scott worked.
you may have dropped 1 column from the table definition (or...
February 16, 2021 at 1:38 pm
stored procs is the easiest and fastest to implement for a small scale like that.
restore prod db to another instance (protected), run data desensitization process, backup and make backup available...
February 16, 2021 at 1:19 pm
WHAT!!!!!!
Non Prod SHOULD NOT have PII information.
Get your processes changed so dev gets a version of the prod database that has gone through a process of removing PII information from...
February 16, 2021 at 8:37 am
changing part of Scott's code should work.
SELECT @sql = STUFF((
SELECT ', ' + 'MOVE ''' + LogicalName + ''' TO '''
...
February 16, 2021 at 12:25 am
DDM is NOT a good choice for anything - for ad-hoc users its not like they can unmask it but they can infer the data and after multiple attempts they...
February 15, 2021 at 6:26 pm
as a important note get ride of those with(nolock). if your business is ok with possibility of having bad data supplied to them you can add a single statement at...
February 13, 2021 at 6:53 pm
Social Security numbers are considered PII and are a attribute of an individual/company and should be stored securely and are for this reason a bad choice for PK - other...
February 12, 2021 at 7:45 pm
the following code will work - .mdf file CAN NOT be opened by SQL Server when it is done as SQL will exclusively lock the file.
as everyone said this is...
February 12, 2021 at 5:25 pm
Viewing 15 posts - 1,276 through 1,290 (of 2,701 total)