Viewing 15 posts - 1,141 through 1,155 (of 4,820 total)
June 7, 2018 at 8:54 am
June 7, 2018 at 8:33 am
select ob1.name, ix1.name,...June 5, 2018 at 1:56 pm
Did you run the setup program "as Administrator" ?
Did you give the machine a fresh re-boot before attempting the installation?
June 5, 2018 at 1:53 pm
June 5, 2018 at 1:51 pm
June 5, 2018 at 8:16 am
Here;s one way to handle it:SELECT DISTINCT
p.ID AS IntProviderID
,p.LastName
,p.FirstName
,p.MiddleName
,ISNULL(REPLACE(CONVERT(char(10), p.DateOfBirth, 101), '/', ''), '01011901') AS DateOfBirth
,CASE p.Sex WHEN '' THEN 'U' ELSE...
June 5, 2018 at 8:04 am
First, why are you insisting on using XML ? Second, how exactly is your function going to be called? Even if that function is CLR-based, calling it for every row...
June 5, 2018 at 7:43 am
There's a much better way to get numbers that don't get repeated. And you don't even need a table to keep track of them. It's called a sequence object. You'll...
June 5, 2018 at 6:48 am
No CTE is needed for this. What you appear to be looking for is an average cost per item that comes in the door from a supplier. There are WINDOW...
June 5, 2018 at 6:37 am
SELECT TOP (99.9999999) PERCENT CAST(CAST(LEFT(SpecialCode,...
June 5, 2018 at 6:07 am
June 4, 2018 at 1:45 pm
imani_technology - Monday, June 4, 2018 10:36 AMThe problem is, the full file could be partially wrong at times.
And perhaps the most...
June 4, 2018 at 1:21 pm
June 4, 2018 at 1:03 pm
June 4, 2018 at 12:20 pm
Viewing 15 posts - 1,141 through 1,155 (of 4,820 total)