Viewing 15 posts - 91 through 105 (of 106 total)
No, if there is 1 or more Billing, then do not return the Primary.
The current query as shown, returns them all.
June 17, 2003 at 12:42 pm
There can be 0 to Many Addresses of Type BillingAddrType.
There must be and can be only 1 PrimaryAddr
If there is 1 or More Billing Addresses, it would return all of...
June 17, 2003 at 12:37 pm
The basic requirements are that I need something that allows me to define column aliases as well as the ability to exclude which columns the users can see and choose...
April 28, 2003 at 8:36 am
Thank you for the quick replies.
Does it have to be in columns, No. I have something that works (parsing the datasets), but it would be less overhead / more efficient...
March 25, 2003 at 9:15 am
Like many others in the forums I am trying to find a secure method for a non sysadmin to execute a DTS Package.
xp_cmdshell appears to be out since I cannot...
February 12, 2003 at 4:28 pm
Thanks - thought for sure I tried those variations - obviously not.
So much for long weekends of banging on TSQL - I need to stick to .Net...
January 27, 2003 at 7:20 am
Of course (slaps head)!
Sometimes the forest gets in the way...
Thanks for the quick reply.
January 24, 2003 at 3:18 pm
FWIW - I think the journal style is fine and easy to read.
Clustering / high availability is something we too have considered. Unfortunately the cost of traditional clustering is prohibitive.
I...
January 16, 2003 at 7:31 am
Thanks - I did see that review.
The only one I have found and no talk about it in the groups. Google search comes up almost empty (except for company...
November 14, 2002 at 4:24 pm
Thank you for your replies.
I had not considered using the SPID to track back to my loginname, that will resolve that issue.
For anyone else that may read this thread and...
October 22, 2002 at 3:28 pm
Thank you for the replies.
The bitwise OR with the Inner Join returns only those rows with the included bits selected, so I have resolved that part of the issue.
Programatically, having...
June 11, 2002 at 7:43 am
Ok, I think I got it using an Inner Join and a bitwise OR '|'
SELECT * FROM persontypes Inner Join Persons on Persons.PersonTypeBits = (PersonTypes.PersonTypeBit | Persons.PersonTypeBits)
where PersonID =...
June 10, 2002 at 2:49 pm
Thank you for the reply, but I think I'm missing something.
Let me provide a bit more information-
In the example, the PersonTypes table has four records
PersonTypeBit Desription
...
June 10, 2002 at 1:37 pm
Andy,
Thanks for the reply - but performance aside, what about maintainability?
Assuming using GUIDs, it would seem that having SProcs that can handle varying amounts of parameters without being edited and...
April 17, 2002 at 10:55 am
Viewing 15 posts - 91 through 105 (of 106 total)