October 1, 2013 at 9:51 pm
Hi Everyone..I hope everyone is having a nice day:-)
Is this right if i will do my project this way?
Please see my attachment
October 2, 2013 at 1:18 am
What kind of project is this?
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
October 2, 2013 at 1:54 am
Normally you'd go a lot further into the design phase before considering physical implementations.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
October 2, 2013 at 7:50 am
Your picture doesn't give a lot of detail and your question is just as vague. What do you define "right" as? What are you trying to accomplish?
October 2, 2013 at 8:09 am
enriquezreyjoseph (10/1/2013)
Hi Everyone..I hope everyone is having a nice day:-)Is this right if i will do my project this way?
Please see my attachment
If it's strictly an ETL project, maybe. Otherwise, probably not.
--Jeff Moden
Change is inevitable... Change for the better is not.
October 2, 2013 at 8:44 am
To me it looks like all of the arrows are going in the wrong direction.
You have a class that populates a dataset and that class also gets shipped off to a server.
It looks like there is nothing being done with the dataset.
With nothing being done by the dataset and the apparent misdirection of the arrows (assuming), I would say it looks completely wrong.
Then again, we have no real project requirements to make any determinations of right or wrong.
Jason...AKA CirqueDeSQLeil
_______________________________________________
I have given a name to my pain...MCM SQL Server, MVP
SQL RNNR
Posting Performance Based Questions - Gail Shaw[/url]
Learn Extended Events
October 2, 2013 at 6:34 pm
SQLRNNR (10/2/2013)
To me it looks like all of the arrows are going in the wrong direction.You have a class that populates a dataset and that class also gets shipped off to a server.
It looks like there is nothing being done with the dataset.
With nothing being done by the dataset and the apparent misdirection of the arrows (assuming), I would say it looks completely wrong.
Then again, we have no real project requirements to make any determinations of right or wrong.
SQLRNNR...i think you are the only one who get it right...thanks for the advise my friend:-)
October 2, 2013 at 6:41 pm
my classes contains a connectionString to a different server, because every server contains a different databases, so meaning in every classes i have different connectionString that will open the connection to a certain database....and mydataset contains all tables in a certain database...
Is this clear explaination? or should i elaborate more my friends(ladys and gentlemen) ?....
cheers 🙂
October 2, 2013 at 6:44 pm
Jeff Moden (10/2/2013)
enriquezreyjoseph (10/1/2013)
Hi Everyone..I hope everyone is having a nice day:-)Is this right if i will do my project this way?
Please see my attachment
If it's strictly an ETL project, maybe. Otherwise, probably not.
What do you mean ETL project??...
"Every Person has it's own weaknesses, be brave even though you are not, no one can tell the difference" ~ Sir Bernard Tan
October 3, 2013 at 12:25 am
enriquezreyjoseph (10/2/2013)
Jeff Moden (10/2/2013)
enriquezreyjoseph (10/1/2013)
Hi Everyone..I hope everyone is having a nice day:-)Is this right if i will do my project this way?
Please see my attachment
If it's strictly an ETL project, maybe. Otherwise, probably not.
What do you mean ETL project??...
"Every Person has it's own weaknesses, be brave even though you are not, no one can tell the difference" ~ Sir Bernard Tan
ETL - Extract, Transform, Load
Usually done when moving data from OLTP databases to DW databases.
October 3, 2013 at 4:55 am
enriquezreyjoseph (10/2/2013)
my classes contains a connectionString to a different server, because every server contains a different databases, so meaning in every classes i have different connectionString that will open the connection to a certain database....and mydataset contains all tables in a certain database...
Given this information, I think the graph is seriously wrong. Either each class leads to a server and a set of tables within that server's database, or you have 3 classes acting upon one database's information and then sending information to two other servers.
How well do you know the data? And what exactly are you trying to do here, because your explanation doesn't tell us what you're doing. It just tells us a very generalized layout.
And why do you need classes to point to a dataset anyway? You should be able to derive a dataset independently of the class. The class should only define what to do with that data once you have it.
October 3, 2013 at 7:03 am
Lynn Pettis (10/3/2013)
enriquezreyjoseph (10/2/2013)
Jeff Moden (10/2/2013)
enriquezreyjoseph (10/1/2013)
Hi Everyone..I hope everyone is having a nice day:-)Is this right if i will do my project this way?
Please see my attachment
If it's strictly an ETL project, maybe. Otherwise, probably not.
What do you mean ETL project??...
"Every Person has it's own weaknesses, be brave even though you are not, no one can tell the difference" ~ Sir Bernard Tan
ETL - Extract, Transform, Load
Usually done when moving data from OLTP databases to DW databases.
Or moving data from external sources to databases.
--Jeff Moden
Change is inevitable... Change for the better is not.
October 3, 2013 at 7:17 am
Jeff Moden (10/3/2013)
Lynn Pettis (10/3/2013)
enriquezreyjoseph (10/2/2013)
Jeff Moden (10/2/2013)
enriquezreyjoseph (10/1/2013)
Hi Everyone..I hope everyone is having a nice day:-)Is this right if i will do my project this way?
Please see my attachment
If it's strictly an ETL project, maybe. Otherwise, probably not.
What do you mean ETL project??...
"Every Person has it's own weaknesses, be brave even though you are not, no one can tell the difference" ~ Sir Bernard Tan
ETL - Extract, Transform, Load
Usually done when moving data from OLTP databases to DW databases.
Or moving data from external sources to databases.
Or moving data from databases to external sources.
October 3, 2013 at 11:21 am
Brandie Tarvin (10/3/2013)
Jeff Moden (10/3/2013)
Lynn Pettis (10/3/2013)
enriquezreyjoseph (10/2/2013)
Jeff Moden (10/2/2013)
enriquezreyjoseph (10/1/2013)
Hi Everyone..I hope everyone is having a nice day:-)Is this right if i will do my project this way?
Please see my attachment
If it's strictly an ETL project, maybe. Otherwise, probably not.
What do you mean ETL project??...
"Every Person has it's own weaknesses, be brave even though you are not, no one can tell the difference" ~ Sir Bernard Tan
ETL - Extract, Transform, Load
Usually done when moving data from OLTP databases to DW databases.
Or moving data from external sources to databases.
Or moving data from databases to external sources.
Or moving data from external sources to external sources 😀
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
October 3, 2013 at 6:32 pm
Koen Verbeeck (10/3/2013)
Brandie Tarvin (10/3/2013)
Jeff Moden (10/3/2013)
Lynn Pettis (10/3/2013)
enriquezreyjoseph (10/2/2013)
Jeff Moden (10/2/2013)
enriquezreyjoseph (10/1/2013)
Hi Everyone..I hope everyone is having a nice day:-)Is this right if i will do my project this way?
Please see my attachment
If it's strictly an ETL project, maybe. Otherwise, probably not.
What do you mean ETL project??...
"Every Person has it's own weaknesses, be brave even though you are not, no one can tell the difference" ~ Sir Bernard Tan
ETL - Extract, Transform, Load
Usually done when moving data from OLTP databases to DW databases.
Or moving data from external sources to databases.
Or moving data from databases to external sources.
Or moving data from external sources to external sources 😀
huh??...
Viewing 15 posts - 1 through 15 (of 17 total)
You must be logged in to reply to this topic. Login to reply