Viewing 15 posts - 76 through 90 (of 423 total)
Many times when working on customer's hosts I've had windows restart messages popup with a timer! Sometimes they were hidden in the background and the timer counted down to just...
March 7, 2017 at 7:54 am
A simple circular reference would be where Table A self references A or Tables A and B reference each other. A complex circular reference would be where table A references...
March 6, 2017 at 1:56 pm
Here is something to get you started. It doesn't find complex circular refs but you can remove those if you know what they are.
-- Get...
March 6, 2017 at 1:36 pm
Having several foreign keys in a table is like having multiple parent inheritance. There may be many-to-many relationships where many referencing tables are linked to many referenced tables.
The...
March 6, 2017 at 10:41 am
Based on your current setup I would get more...
March 3, 2017 at 7:19 am
Most all hard drives support S.M.A.R.T technology which monitors parameters of a drive and predict when a failure may occur. Wikipedia or Tom's Hardware are good sites for information on...
March 2, 2017 at 3:32 pm
Interesting post!
It seems strange to run in SIMPLE mode and risk losing a full day of work. Is that because your database is mostly just computing some answers...
March 2, 2017 at 2:34 pm
As developers, we are consumers of Microsoft's services. Those services are likely already in commercial products before being released generally. My car has voice command and bluetooth so I can...
February 27, 2017 at 7:53 am
You still need to represent zero. Using A-J as 0-9, you could represent 10 as BA and 11 as BB. That would drastically shorten your REPLACE list and thus your...
February 21, 2017 at 12:47 pm
Base 10 consists of numbers 0 through 9. How do you want to handle tens, hundreds, etc. What are you trying to accomplish?
February 21, 2017 at 12:31 pm
Here are 3386 pairs of FirstName/NickNames
Aaron,Erin
Aaron,Ron
Aaron,Ronnie
Aaron,Ronny
Abel,Ab
Abel,Abe
Abel,Abie
Abel,Eb
Abel,Ebbie
Abiah,Ab
Abiah,Abijah
Abiah,Biah
Abiel,Ab
Abiel,Biel
Abigail,Abbie
Abigail,Abby
Abigail,Gail
Abigail,Nabby
Abner,Ab
Abner,Abbie
Abraham,Abe
Abraham,Abie
February 21, 2017 at 6:29 am
As I've had to do this on many projects, I will share my past solutions.
I use a table of about 4000 FirstName-NickName pairs to find likely equivalents. Is...
February 20, 2017 at 11:51 am
Both methods will perform in a second, even for millions of rows.
February 17, 2017 at 7:03 am
Normalization allows a system to properly handle one-to-many relationship requirements so I don't quite understand your question. You can model this as a single flattened table...which mainframers did when using...
February 16, 2017 at 3:11 pm
Maybe you want to do something similar to this script. I use it to log all parameters passed into a procedure for a short time to see how customers are...
February 16, 2017 at 8:35 am
Viewing 15 posts - 76 through 90 (of 423 total)