Viewing 15 posts - 1,861 through 1,875 (of 6,679 total)
Your steps are correct for AlwaysOn - you install stand-alone instances on each server in the cluster and then configure an availability group.
April 29, 2020 at 9:40 pm
I would not use a lookup here - I would load the full file into a staging table. From there you can perform a merge or upsert (update/insert) from the...
April 29, 2020 at 9:38 pm
You might be able to use UNICODE to convert the VNI characters to their equivalent unicode values:
Select unicode(N'à'), nchar(unicode(N'à'))
If that is what you are looking for -...
April 29, 2020 at 9:30 pm
Can you define what a 'duplicate' actually means? Is that the same Name,Email combination - or just the same name - or just the same email?
If the same combination identifies...
April 27, 2020 at 9:52 pm
The equivalent in SSIS would be an SSIS expression - and yes you could use REPLACE, REVERSE and FINDSTRING in an expression. It all boils down to what the process...
April 27, 2020 at 9:32 pm
I'm not sure what the equivalent in the language of SSIS is but I have to believe that you shouldn't need to resort to a C# component. Here's how...
April 27, 2020 at 7:15 pm
This can be simplified a bit further:
Select A.[Organization Name]
, [Telemedicine] = sum(Case When p.pos_code = '02' Then 1 Else 0...
April 25, 2020 at 3:17 pm
Not sure about your script - or how you are pulling the data, but the error you are getting is because SSIS cannot automatically convert a normal string to nvarchar.
If...
April 23, 2020 at 6:27 pm
I would suspect this is related to the NLA service - which would not refresh the connection to the domain controller until that server is restarted or the service is...
April 22, 2020 at 8:49 pm
I upgraded SSMS to v18.5 and do not see these results - there must be a setting somewhere that is causing this issue, either in SSMS or in that instance...
April 22, 2020 at 6:48 pm
You could move it out of SSMS and use Powershell - a simple loop over a list of databases to apply the updates:
$servers = ("server1","server2","server3");
$databases = ("db1","db2","db3");
$servers... April 21, 2020 at 9:13 pm
What is the association between an Entry and a Task? It is obviously not the entry number - nor does it appear to be related to the report date...but there...
April 20, 2020 at 8:30 pm
I just noticed this was in SQL Server 2008 - not sure if COUNT windowing function was available in that version. There are other ways to include a total count...
April 20, 2020 at 6:53 pm
2)I tried to use the RowCount task,and tried to save that rowcount and to further use that in the next task.But it doesn't work for me.
3) As there are...
April 20, 2020 at 6:14 pm
You cannot setup a text box in a report where the user can scroll to the right - however, there is a technique you can use:
April 18, 2020 at 4:32 pm
Viewing 15 posts - 1,861 through 1,875 (of 6,679 total)