Viewing 15 posts - 1,261 through 1,275 (of 2,694 total)
do not use linked servers to push data to a SQL Server - it does so on a row by row basis.
always pull - or use a process outside SQL...
March 15, 2021 at 11:18 pm
see this for edge https://stackoverflow.com/questions/57034199/integrated-windows-authentication-in-microsoft-edge
and this for chrome https://knowledge.kofax.com/Smart_Process_Applications_-_TotalAgility/Configuration/Configure_Chrome_To_Allow_Windows_Authentication_Without_Prompting
March 15, 2021 at 11:13 pm
CONVERT(varchar, DecryptByKey([Password_Encrypted])) AS 'DecryptedPwd'
first - NEVER use any data type without specifying its type
decryptbykey returns a varbinary(8000) - so convert it to a varchar(8000) or varchar(max)
second - if the bytes...
March 14, 2021 at 8:15 pm
option 3 - but with addition of fields
March 9, 2021 at 6:47 pm
hum. should not be that slow but possible if the records are big - what's the file size?
is it possible to share the file (even if on private) for me...
March 9, 2021 at 8:06 am
as most of the features that were Enterprise only on 2008 are now standard featured I would just try and restore the db onto a 2017 standard edition - if...
March 7, 2021 at 12:19 pm
try this function https://github.com/RamblingCookieMonster/PowerShell/blob/master/ConvertTo-FlatObject.ps1
most likely you may be able to do
[xml]$file =get-content $tempfile
$datatable = convertto-datatable -inputobject (ConvertTo-FlatObject -InputObject $file)
March 5, 2021 at 11:49 pm
it needs to be all in same line - based on your output you have the sqlcmd in one line then the server name on a new line.
March 4, 2021 at 9:39 pm
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
Viewing 15 posts - 1,261 through 1,275 (of 2,694 total)