1,717 reputation
120
bio website linkedin.com/profile/…
location Minneapolis, MN
age 29
visits member for 1 year, 4 months
seen 5 hours ago
stats profile views 90

Accidental developer in Minneapolis, MN. I stumbled into a job in database development and decided to make a career out of it. I'm slowly but surely teaching myself about database and web development.


May
5
awarded  sql
May
3
comment Does Sql JOIN order affect performance?
Try running both and viewing the execution plans. Are they any different? I wouldn't expect them to be.
May
3
comment Best Practice for storing HistoryOfAllEvents and EventDetails
I'd recommend your second method -- just having one large table. However, to answer your question, the way to link a row to a table is basically to have multiple nullable foreign keys linked to different tables, and only fill in the appropriate one. That can get unwieldy if you have a lot of tables to link to, so you'd want to design the tables to get as much reuse as possible in that case -- with only a few child tables, each used for a certain category of data.
May
3
answered Best Practice for storing HistoryOfAllEvents and EventDetails
May
3
comment Best Practice for storing HistoryOfAllEvents and EventDetails
For me, it's just a question of which will result in the least wasted space. If using your first method, how many child tables would you need? If using your second, how many of the columns in the usage table would be reusable, and how many would be used for only certain instruments?
May
3
comment Best Practice for storing HistoryOfAllEvents and EventDetails
By the way, adding 1GB of data per year should not be a problem at all. I think a lot of people would consider a database of several gigabytes to be pretty small.
May
3
comment Best Practice for storing HistoryOfAllEvents and EventDetails
This really depends on the particular implementation. Would you be able to show us some sample data? I think either of your ideas could work, but which is best -- or whether there's a third, better way -- really depends on what your data looks like.
May
2
comment Querying data from database with vb6 and ms access with adodb
Is this a SQL Server backend, or MS Access? Either way, can you get your query to run successfully in the source database?
May
2
comment Limit SQL statement to year
?? Isn't that what you want? You're going to have to be clearer about what you're looking for. Please post some sample data or something.
May
2
comment Limit SQL statement to year
Just add it to your WHERE clause. I've edited my answer above.
May
2
revised Limit SQL statement to year
deleted 177 characters in body
May
2
comment Limit SQL statement to year
@parkjohnston Some more detail about your tables here would help, since we all seem to be pretty confused about what you're looking for.
May
2
comment Limit SQL statement to year
So do you need records where c1.year is 2013, but there's no match in c2?
May
2
answered Limit SQL statement to year
May
2
comment How can I deactivate user accounts
You shouldn't need to go into the database to do this. Can't you just use the administrative tools within the Wordpress frontend?
Apr
30
revised Microsoft SQL 'not like' vs <>
edited tags
Apr
30
comment Rename table name in MS SQL server. Required to change
There are plenty of resources out there if you just Google it: google.com/search?q=rename+table+name+in+MS+SQL+Server. Is there a particular problem you're having that we can help with?
Apr
30
answered Address normalization
Apr
30
answered What kind of join, if any, is appropriate here?
Apr
26
accepted Access not parsing entire SQL statement