Viewing 10 posts - 1 through 10 (of 10 total)
Paul.Andrew (9/4/2013)
Hi, just wondering why you would do this and not just use the model database? Thanks
If you add a user in model then for every database created it will...
September 4, 2013 at 4:35 am
Mark
Mark Horninger (5/19/2008)
Seems like the 'right' answer is to redesign the DB.
No question about it.
Has anyone considered using an xml based approach to replace the E-A-V model?
Not a bad...
May 19, 2008 at 10:40 am
Hi markos,
marcosc (5/19/2008)
May 19, 2008 at 8:07 am
Hi Markos,
As you said it is not a cool design but for the situation that was described it
was the best approch to take.
The final paragraph also shows that to...
May 19, 2008 at 7:11 am
If you see below and the name part is not in the lookup table, it will add to it automatically. I have included the script with the article for you...
May 19, 2008 at 7:06 am
JRoughgarden (3/24/2008)
Could you give some links to discussion on the (lack of) scalability of the EAV model?
Also, what do you recommend in its place, master entity tables with 1-1...
March 24, 2008 at 3:49 pm
Hi mark,
I am also looking forward to comments on part II of the article.
Thanks
Teshome
March 24, 2008 at 5:40 am
I am nearly there and will try to get in as soon as I can.
regards
Teshome
March 24, 2008 at 5:19 am
[qoute]
1. Oracle - PL SQL : What is is the similar tool in SQL Sever.
[/quote]
Transact-SQL
[qoute]
2. Oracle - Forms : What is is the similar...
March 14, 2008 at 3:42 am
you can use something like
declare @dbname varchar(300)
declare @sqlstring varchar(500)
select @dbname = max(name) from master.dbo.sysdatabases
while @dbname is not null
begin
set @sqlstring = 'use '+ @dbname + ' update tableA...
March 13, 2008 at 9:41 am
Viewing 10 posts - 1 through 10 (of 10 total)