Viewing 15 posts - 301 through 315 (of 320 total)
In one sense, yes I was asking about data warehousing approaches, but what I was really looking for is an explanation of the type of table that I described and...
February 28, 2011 at 2:28 pm
I don't think a Star Schema accurately reflects what I'm seeing in my table. Are you sure that's the type that's used in my situation? Again, I have a lot...
February 28, 2011 at 2:05 pm
GSquared, how would one report off of a structure like that? I suppose you could use derived tables, only selecting 2 columns at a time. For example:
SELECT program, major
FROM Programs
WHERE...
February 25, 2011 at 10:02 am
It's not homework, it has to do with academic programs.
Shirt = Program (e.g. BS in Math)
Year = Academic Year
Color = Major
Size = Specialization
The number of rows per program in the...
February 24, 2011 at 2:38 pm
opc.three (2/24/2011)
February 24, 2011 at 12:09 pm
It seems odd though that I'd have to normalize it just to turn around and denormalize again, right?
And yes, I agree the xref table will have the same number of...
February 24, 2011 at 10:30 am
Craig,
Thanks for your explanation. Your recommendations make sense, so I'll dig a little deeper with those.
CELKO,
Thanks for the input, but I think you are looking too far into this. My...
January 31, 2011 at 4:27 pm
GSquared, I feel the exact same way about it. I'm contemplating not going through the trouble of getting it sorted properly since it will end up being the most lines...
December 30, 2010 at 7:50 am
GSquared (12/29/2010)
The answer is, only the person who wrote it knows what they meant, and they haven't replied yet. So, nobody knows.
Thus far, the guesses on...
December 29, 2010 at 11:53 am
Both of you are correct. It makes the most sense to add PersonID to the Positions table. However, based on how this administrative interface works, it looks like it NEEDS...
October 26, 2010 at 2:13 pm
Unfortunately, there is no other way to determine their relationship.
Initially, this database was modeled differently (made a lot more sense and would not have caused this problem). However, it was...
October 26, 2010 at 10:28 am
I should have specified. Yes, there are more columns in the Positions table that differentiate the rows, such as Phone number, Preferred title, etc.
Also, I'd rather not use a cursor....
October 26, 2010 at 10:15 am
Ok, I'll try to make it a little more clear. Let's say I have Jim Smith and John smith in the People table:
ID, EmployeeID, LastName, FirstName
1, M1234, Smith, Jim
2, M2222,...
October 26, 2010 at 8:58 am
This may already have been answered, but you can use database mirroring in conjunction with transactional replication, correct?
August 18, 2010 at 9:40 am
Thanks for the response Perry!
I'm not sure I understand the difference between transactional replication and database mirroring, but I don't mind using mirroring on the cluster if that will keep...
August 17, 2010 at 10:26 am
Viewing 15 posts - 301 through 315 (of 320 total)