Viewing 14 posts - 1 through 14 (of 14 total)
I've looked in to this a bit further and it appears that is might be an issue with our layer 3 switches.
A packet capture shows that the ARP announcements go...
June 22, 2022 at 4:00 pm
As far as I am aware everything is configured on both nodes.
There are some occasions where failing the instances over works fine and then randomly it doesn't work again.
Occasionally I...
June 22, 2022 at 5:56 am
Thanks Phil, works perfect
March 8, 2022 at 10:10 am
Hi Scott, would there by a way of getting this to return all rows of TableA even if there are no matches in TableB or TableC?
I tried to change it...
March 8, 2022 at 9:10 am
Thanks Scott,
Does exactly what I wanted.
March 7, 2022 at 4:40 pm
Apologies I simplified the data a little to make the example a little easier. I do required the ID's, these are the first columns in each of the tables.
The UsageCount...
March 7, 2022 at 4:22 pm
Thanks, exactly what I needed
January 20, 2022 at 8:15 pm
Something like this? (I may be oversimplifying something...)
-- exclude when phone # refers to multiple people.
-- exclude when phone # refers to multiple people.
SELECT * FROM...
September 13, 2021 at 10:19 am
If I am understanding your request properly, something like this should work, right:
WITH [cte]
AS
(
SELECT
[Mobile]
, [WorkTelephone]
, [HomeTelephone]
, [FirstName]
, [LastName]
, [PolicyNumber]
, COUNT(1) OVER (PARTITION BY
[Mobile]
, [FirstName]
...
September 11, 2021 at 6:46 pm
what do you want return if you had these rows
02038881121 | Jamie
02038881121 | Jamie
02038881121 | John
02038881121 | Jack
I would want the first two rows returned as...
September 8, 2021 at 9:28 am
Hi Phil,
Thanks for the reply.
The create/ insert would be as follows:
CREATE TABLE CustomerPolicies
(
[Mobile] NVARCHAR(20),
[WorkTelephone] NVARCHAR(20),
[HomeTelephone] NVARCHAR(20),
[FirstName] NVARCHAR(30),
[LastName] NVARCHAR(30),
[PolicyNumber] INT
)
INSERT INTO CustomerPolicies VALUES ('07972234564', 'N/A', 'N/A', 'Jon', 'Evans',...
September 8, 2021 at 9:26 am
Perfect, that's now working.
Appreciate the help
July 30, 2019 at 1:52 pm
SET @Query1 = FORMATMESSAGE(N'''SELECT SUM([master].[sys].[master_files].)*8/1024 FROM [master].[sys].[master_files] WHERE [master].[sys].[master_files].[name] = ''''%s''''', @DatabaseName)
SET @Query2 = FORMATMESSAGE(N'SELECT * FROM OPENQUERY([%s],%s'')', @LinkedServerName, @Query1)
Formatted it is:
SELECT * FROM...
July 30, 2019 at 1:16 pm
Viewing 14 posts - 1 through 14 (of 14 total)