Viewing 15 posts - 1 through 15 (of 197 total)
GSquared (8/17/2009)
August 17, 2009 at 9:49 am
So you must ALSO create a TSQL wrapper for them. Man, what good is having to do that?
Someone must be nuts to use CLR SPs...
February 27, 2009 at 10:47 am
Can you tell me exactly how the CLR SPs are created and stored?
I was under the impression that you could just write them in a .Net language in SSMS
just like...
February 27, 2009 at 9:26 am
I actually have it working for all columns but for some reason, the char(13) + char(10) doesn't input a CRLF in the text when I paste it into a text...
January 29, 2009 at 3:45 pm
ok, cool..
How would I check to see if the column has a constraint that I must remove, first?
January 29, 2009 at 2:59 pm
Thanks, Lynn. I'd like to see what the problem is..
January 29, 2009 at 1:09 pm
Ken McKelvey (1/29/2009)
After briefly scanning the post:1. GO is not a SQL command but a batch terminator in the tools. Try getting rid of it.
I want a GO after each...
January 29, 2009 at 12:48 pm
Let me post the actual SQL being used to fill that selection grid.
January 21, 2009 at 10:05 am
Any more thoughts on the union with the structures I've provided?
January 21, 2009 at 8:34 am
Another sticky issue we have is that when a person is, say, a subscriber contact AND and emergency contact, they will have two records in ptContacts.
Whoa....
January 20, 2009 at 3:52 pm
Well, ptDemographics doesn't have the same structure as ptContacts but they both have an MRN field that "point" to each other. We currenlty have a TableAdapter that is filled with...
January 20, 2009 at 3:51 pm
GSquared (1/20/2009)
January 20, 2009 at 2:46 pm
Yeah I did forget the from.
select name, type from sys.procedures
where name not in (select name FROM FIVER.AHOG.sys.procedures)
order by name
How do I link the servers so I can use the NTLogin...
January 16, 2009 at 11:23 am
This worked. Had somebody else from the office work on it. 😉
;WITH ip(MRN, CarrierID, PolicyID, InsuranceLevel,ExpirationDtTm,EffectiveDtTm)
AS (SELECT MRN, CARRIERID, PolicyID, InsuranceLevel,ExpirationDtTm,EffectiveDtTm
FROM ptInsurancePlans where InsuranceLevel...
January 14, 2009 at 10:36 am
Thanks, I forgot about the HAVING clause.
January 12, 2009 at 8:20 am
Viewing 15 posts - 1 through 15 (of 197 total)