Viewing 15 posts - 2,446 through 2,460 (of 4,820 total)
taane - Tuesday, July 4, 2017 7:30 PMThank you Steve.
Appreciate the help
Cheers Greg
Glad to help out.
July 5, 2017 at 9:01 am
sorry - I thought it might be the server link - It's not - it...
July 5, 2017 at 8:39 am
You have it simplified, but what about the linked server? Is that still a part of the equation? You haven't provided any detail on that....
July 5, 2017 at 8:05 am
July 5, 2017 at 6:50 am
July 5, 2017 at 6:41 am
Create table #Temp (
person_id varchar(8),
starting_point Varchar(1),
ending_point varchar(1)
);
insert into #Temp (person_id,starting_point,ending_point) VALUES ('00000001','A','B')
insert into #Temp (person_id,starting_point,ending_point) VALUES ('00000002','C','F')
insert into #Temp (person_id,starting_point,ending_point) VALUES ('00000003','B','C');
July 3, 2017 at 2:00 pm
I'm guessing it's the server default collation, but it is a guess. Not sure which collation would be satisfactory to SAP. I know that might not be all that helpful,...
July 3, 2017 at 1:44 pm
Kevin Ray - Monday, July 3, 2017 1:06 PMSo where does the DelimitedSplit8K come from? Is that a stored procedure?Thanks
Oops! Forgot to...
July 3, 2017 at 1:13 pm
HOLDLOCK is equivalent to SERIALIZABLE. TABLOCKX just makes the table level lock exclusive. Does that help? You can review these table hints here:
https://docs.microsoft.com/en-us/sql/t-sql/queries/hints-transact-sql-table
July 3, 2017 at 1:10 pm
Let me restate my original issue. There is a comma deleted value (sometimes there...
July 3, 2017 at 12:32 pm
To help others see that long line of code in a more readable format:CREATE TABLE program (
ProgramID int primary key not null,
ProgramName varchar(30)
);
GO
insert into...
July 3, 2017 at 10:56 am
July 3, 2017 at 10:46 am
July 3, 2017 at 10:39 am
July 3, 2017 at 10:19 am
Viewing 15 posts - 2,446 through 2,460 (of 4,820 total)