Viewing 15 posts - 556 through 570 (of 1,492 total)
Grant Fritchey (12/20/2013)
WayneS (12/20/2013)
For...
December 20, 2013 at 9:56 am
Several reasons come to mind
You might leave the company, SQL Agent probably won't. Depending on how they handle deactivation of AD accounts, it may not become apparent right away. But...
December 19, 2013 at 9:10 am
yuvipoy (12/17/2013)
December 19, 2013 at 8:36 am
tmatthis (12/19/2013)
December 19, 2013 at 8:11 am
The server itself needs to be registered and allowed to delegate.
The account running the SQL svc needs to be allowed to delegate this service on this machine.
Different accounts, accessing indivifual...
December 18, 2013 at 8:39 am
samalex (12/16/2013)
Greg Edwards-268690 (12/9/2013)
Reporting Services runs HTTP service on a machine.
Unsure from your description if these...
December 16, 2013 at 12:41 pm
Not working right now - took a voluntary leave back in April. :hehe:
Been plenty busy though with family and things I couldn't get to while working.
Liked DB2 and the AS400....
December 13, 2013 at 10:53 am
So this gets around the limitation that normally turns the outer join into an inner join.
LEFT OUTER JOIN dbo.Email m
ON m.EKey = e.EKey AND m.Next_of_Kin = 'true'
Mostly used a...
December 13, 2013 at 9:16 am
ChrisM@Work (12/13/2013)
Greg Edwards-268690 (12/13/2013)
I agree with a lot of your Why's. See this all the time.
If you could look at this, run the view for next of kin info,...
December 13, 2013 at 8:21 am
WayneS (12/13/2013)
Greg Edwards-268690 (12/13/2013)
jasona.work (12/13/2013)
Ed Wagner (12/13/2013)
jasona.work (12/13/2013)
I mean seriously, 12 days until X-Mas? It feels like it was only a couple weeks ago...
December 13, 2013 at 7:54 am
jasona.work (12/13/2013)
Ed Wagner (12/13/2013)
jasona.work (12/13/2013)
I mean seriously, 12 days until X-Mas? It feels like it was only a couple weeks ago I was starting...
December 13, 2013 at 7:08 am
Chris -
I agree with a lot of your Why's. See this all the time.
If you could look at this, run the view for next of kin info, and tell me...
December 13, 2013 at 6:58 am
I created a real quick sample of a few tables.
The problem I see, is in doing an outer join and selecting any next of kin records that have information without...
December 12, 2013 at 4:21 pm
If the columns are all 1 or 0, if a + b + c > 0, one of the columns is populated.
December 12, 2013 at 7:05 am
First time playing around with this.
Looks like something I would use from time to time.
USE AdventureWorksDW2008R2
go
with temp_tbl
as (
select
ROW_NUMBER() over (order by PostalCode desc) as Row_Number
,GeographyKey
,City
,StateProvinceCode
,StateProvinceName
,CountryRegionCode
,EnglishCountryRegionName
,PostalCode
,SalesTerritoryKey
from
dbo.DimGeography
where
CountryRegionCode = 'US'
and StateProvinceCode = 'MN')
SELECT...
December 11, 2013 at 11:44 am
Viewing 15 posts - 556 through 570 (of 1,492 total)