User GuinnessFan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T22:55:03Z http://stackoverflow.com/feeds/user/61339 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1828782/strategy-for-avoiding-a-common-sql-development-error-misleading-result-on-join-b/1828952#1828952 0 Answer by GuinnessFan for Strategy for avoiding a common sql development error (misleading result on join bug) GuinnessFan 2009-12-01T21:10:00Z 2009-12-01T21:10:00Z <p>Your column names should take care of this unless you named them all "ID". Are you writing multiple select statement using the same tables? You may want to create views for the more common ones.</p> http://stackoverflow.com/questions/1828308/devexpress-xtra-report-how-to-display-a-label-in-group-footer-when-the-detail-ba 0 DevExpress Xtra Report: How to display a label in group footer when the detail band does not have any data? GuinnessFan 2009-12-01T19:26:30Z 2009-12-01T19:26:30Z <p>If a have a lable called: lblWarning. I'd like to display it (Visible = True) when the detail band does not have any records. The label is in the group footer.</p> http://stackoverflow.com/questions/1821090/process-for-handling-expiring-airline-miles/1821145#1821145 0 Answer by GuinnessFan for Process for handling expiring airline miles GuinnessFan 2009-11-30T17:18:45Z 2009-11-30T17:18:45Z <p>I don't think you need to worry about which miles are used first like in an inventory application; they're either expired or not (based on expiration date). The key is: how many miles remain? Expired miles, just like used miles, would be like a debit to an account (Only you don't need a separate transaction to indicate expiration, you only exclude them from the formula used to calculate the current balance.).</p> http://stackoverflow.com/questions/1765441/sqlserver-performance-with-a-large-number-of-tables-in-database/1765771#1765771 2 Answer by GuinnessFan for SqlServer performance with a large number of tables in database GuinnessFan 2009-11-19T19:07:57Z 2009-11-19T19:07:57Z <p>Having all of these tables isn't ideal for any database. After the upload, does the web app use the newly created table? Maybe it gives some feedback to the user on what was uploaded? </p> <p>Does your application utilize all of these tables for any reporting etc? You mentioned keeping them around for a few months - not sure why. If not move the contents to a central table and drop the individual table.</p> <p>Once the backend is taken care of, recode the website to save uploads to a central table. You may need two tables. An UploadHeader table to track the upload batch: who uploaded, when, etc. and link to a detail table with the individual records from the excel upload.</p> http://stackoverflow.com/questions/1751140/what-is-wrong-with-this-sql/1751230#1751230 1 Answer by GuinnessFan for What is wrong with this SQL? GuinnessFan 2009-11-17T19:36:58Z 2009-11-17T19:36:58Z <p>You don't seem to be creating a valid date.</p> <pre><code>select 'delete from HttpRequests where Date &lt; ''2009-08-' + convert(nvarchar(max), 0) </code></pre> <p>+ ''''</p> <p>would give you: delete from HttpRequests where Date &lt; '2009-08-0'</p> http://stackoverflow.com/questions/490455/how-to-bifurcate-activex-controls-present-in-access-db-form-using-vb-net/504871#504871 0 Answer by GuinnessFan for How to Bifurcate Activex controls present in access DB Form using vb.net? GuinnessFan 2009-02-02T20:59:37Z 2009-11-17T03:48:29Z <p>Your control should have a Class property. That should give you enough information to determine what type it is. I know this is available to the Control class in Access itself, but I'm not sure about vb.net.</p> <p>Example (A case statement would be needed to address all of them): </p> <pre><code> If oCtl.Class = "AX2Controls.wsAX2Text" then iAX2Text = iAX2Text + 1 End if </code></pre> http://stackoverflow.com/questions/1743282/how-to-save-vba-variable-in-database/1743338#1743338 3 Answer by GuinnessFan for How to save VBA variable in database? GuinnessFan 2009-11-16T16:40:43Z 2009-11-16T16:44:27Z <p>Does the form use this table as the Record Source? If so, where ever in your vba you apply the value to this variable, the just apply the same value to the appropriate field:</p> <pre><code>Me.TheFileNameField = TheFileNameVariable </code></pre> <p>You could also use an Update query, for example:</p> <pre><code>strSQL="UPDATE SomeTable SET SomeField='" &amp; Replace(TheFileNameVariable,"'","''") &amp; "'" CurrentDB.Execute strSQL, dbFailOnError </code></pre> http://stackoverflow.com/questions/1723523/database-change-management-using-hand-generated-scripts/1723740#1723740 0 Answer by GuinnessFan for Database Change Management using hand generated scripts GuinnessFan 2009-11-12T16:59:04Z 2009-11-12T16:59:04Z <p>If you have all of your scripts for a given version in a folder, you can run this as a batch file if you place it in that folder:</p> <pre><code>for %%X in (*.SQL) do SQLCMD -S &lt;SERVER_NAME&gt; -d &lt;DATABASE_NAME&gt; -E -I -i "%%X" &gt;&gt; ResultBatch.txt </code></pre> <p>Sorry, I don't remember where I got this from or I would give credit.</p> http://stackoverflow.com/questions/1723015/check-whether-two-dates-contain-a-given-month/1723383#1723383 1 Answer by GuinnessFan for Check whether two dates contain a given month GuinnessFan 2009-11-12T16:11:27Z 2009-11-12T16:17:50Z <pre><code>DECLARE @MonthCode AS INT SELECT @MonthCode = 11 /* NOVEMBER */ declare @yourtable table( startdate datetime , enddate datetime ) insert into @yourtable( startdate , enddate ) ( select '8/10/2009', '01/01/2010' union all select '8/10/2009' , '11/15/2009' union all select '11/15/2009' , '01/01/2010' union all select '11/15/2009' , '11/15/2009' union all select '10/01/2010' , '12/31/2010' union all select '05/01/2009', '10/30/2009' ) select * from @yourtable where DateDiff(mm, startdate, enddate) &gt; @MonthCode -- can't go over 11 months without crossing date OR (Month(startdate) &lt;= @MonthCode -- before Month selected AND (month(enddate) &gt;=@MonthCode -- after month selected OR year(enddate) &gt; year(startdate) -- or crosses into next year ) ) OR (Month(startdate) &gt;= @MonthCode -- starts after in same year after month and month(enddate) &gt;= @MonthCode -- must end on/after same month assume next year and year(enddate) &gt; year(startdate) ) </code></pre> http://stackoverflow.com/questions/1710182/order-by-file-date-in-collection 0 Order By file date in collection GuinnessFan 2009-11-10T18:34:18Z 2009-11-12T15:19:42Z <p>I don't think the, System.Collections.ObjectModel has any sort or order by capability. </p> <p>I have a list of files and I'd like to sort by the file date.</p> <pre><code>Dim list AS System.Collections.ObjectModel.ReadOnlyCollection(Of String) list = My.Computer.FileSystem.GetFiles("C:\SearchFolder" _ , FileIO.SearchOption.SearchByTopLevelOnly _ , "TheFileName*.txt") Dim sTheLastFile AS String sTheLastFile = list.Max() </code></pre> <p>This returns the last file, but based on file name and not date. I think I need to add .OrderBy(... just can't get that part.</p> http://stackoverflow.com/questions/1672077/setting-up-an-ms-access-db-for-multi-user-access/1674243#1674243 2 Answer by GuinnessFan for Setting up an MS-Access DB for multi-user access GuinnessFan 2009-11-04T14:49:47Z 2009-11-10T14:46:55Z <p>Table or record locking is available in Access during data writes. You can control the Default record locking through Tools | Options | Advanced tab: </p> <ol> <li>No Locks</li> <li>All Records</li> <li>Edited Record</li> </ol> <p>You can set this on a form's Record Locks or in your DAO/ADO code for specific needs.</p> <p>Transactions shouldn't be a problem if you use them correctly.</p> <p>Best practice: Separate your tables from All your other code. Give each user their own copy of the code file and then share the data file on a network server. Work on a 'test' copy of the code (and a link to a test data file) and then update user's individual code files separately. If you need to make data file changes (add tables, columns, etc), you will have to have all users get out of the application to make the changes.</p> <p>See other answers for Oracle comparison.</p> http://stackoverflow.com/questions/1703298/how-to-not-be-an-it-programmer/1703396#1703396 1 Answer by GuinnessFan for How to not be an IT programmer? GuinnessFan 2009-11-09T20:03:42Z 2009-11-09T20:03:42Z <p>I suggest saving your money so you can relocate. Objective C had 500+ hits on Dice.com. If you have applied for these types of jobs, what feedback are you getting from interviews as to why you're not getting the job? </p> http://stackoverflow.com/questions/1005800/are-writing-triggers-in-ms-sql-server-the-same-as-writing-them-in-ms-access/1676869#1676869 0 Answer by GuinnessFan for Are writing triggers in MS SQL server the same as writing them in MS Access? GuinnessFan 2009-11-04T21:46:46Z 2009-11-04T21:46:46Z <p>They may be coming in Access 2010? <a href="http://blogs.msdn.com/access/archive/2009/08/13/access-2010-data-macros-similar-to-triggers.aspx" rel="nofollow">http://blogs.msdn.com/access/archive/2009/08/13/access-2010-data-macros-similar-to-triggers.aspx</a></p> http://stackoverflow.com/questions/1675396/ms-access-complicated-order-by/1676843#1676843 3 Answer by GuinnessFan for MS Access Complicated Order By GuinnessFan 2009-11-04T21:43:50Z 2009-11-04T21:43:50Z <p>Since you've had to give up being messing long ago on this project ;)</p> <pre><code>Select * , IIF(((Select Count(*) from order_part where orderid = 1234 and price = 0))=0 and price = ((select max(price) from order_part where orderid = 1234 and qty &gt;0 and part_id not in(("MISC-30","MISC-31","TEMP") )), 1 , IIf(price = 0, 2 , IIf(part_id IN("MISC-30","MISC-31","TEMP"), 4 , IIf(qty &lt; 0, 5 , 3)))) AS Part_Sort from order_part Order By Part Sort, part_id </code></pre> <p>Really wish Access had case statement. But you can build these nested IIf's and provide a sorting number based on your logic. The final "ELSE" part is the #3 since just sorting by the part ID is the third choice/ doesn't fall under these other categories. Sorry, I know the parenthesis are wrong.</p> http://stackoverflow.com/questions/1667432/how-do-i-go-about-using-dlookup-in-a-validation-rule-of-a-text-box-on-a-form-in-a/1667752#1667752 0 Answer by GuinnessFan for How do I go about using DLookup in a validation rule of a text box on a form in access GuinnessFan 2009-11-03T14:41:21Z 2009-11-03T16:42:59Z <p>You may want isolate the string you are creating for your filter, so you could check in the immediate window if the value is what you expect.</p> <pre><code>dim sFilter as String sFilter = "ABKUERZUNG='" &amp; [Forms]![frmMutBetriebspunkt]![BP_ABKUERZUNG] &amp; "'" dlookup("ABKUERZUNG", "tblABKUERZUNG", sFilter) is null </code></pre> http://stackoverflow.com/questions/1667689/who-owns-documentation/1667713#1667713 0 Answer by GuinnessFan for Who owns documentation? GuinnessFan 2009-11-03T14:37:14Z 2009-11-03T14:37:14Z <p>You need someone in authority to make sure it gets done (I guess managers should do that?). All 3 of these groups should have input. Product owners may be involved more during the requirements hunting and testing phases. Tech support may pick things up during testing and when they create training docs. The more imput they get from developers the better, but there needs to be some discretion to prevent taking up devs time.</p> http://stackoverflow.com/questions/1665214/version-control-for-non-programmers/1665239#1665239 1 Answer by GuinnessFan for Version Control for non-programmers GuinnessFan 2009-11-03T04:25:01Z 2009-11-03T04:25:01Z <p>Doesn't SharePoint come with Windows Server? It can handle file versions.</p> http://stackoverflow.com/questions/1665179/what-is-the-difference-between-column-oriented-and-row-oriented-databases/1665212#1665212 1 Answer by GuinnessFan for What is the difference between column-oriented and row-oriented databases? GuinnessFan 2009-11-03T04:15:54Z 2009-11-03T04:15:54Z <p>Here you go: <a href="http://en.wikipedia.org/wiki/Column-oriented%5FDBMS" rel="nofollow">Column-Oriented DBMS</a></p> http://stackoverflow.com/questions/1662464/how-to-manage-multiple-clients-with-slightly-different-business-rules/1665196#1665196 0 Answer by GuinnessFan for How to manage multiple clients with slightly different business rules? GuinnessFan 2009-11-03T04:10:30Z 2009-11-03T04:10:30Z <p>I've used some applications that offered the following customizations:</p> <ol> <li>Web pages were configurable - we could drag fields out of view, position them where we wanted with our own name for the field label.</li> <li>Add our own views or stored procedures and use them in: data grids (along with an update proc) and reports. Each client would need their own database.</li> <li>Custom mapping of Excel files to import data into system.</li> <li>Add our own calculated fields.</li> <li>Ability to run custom scripts on forms during various events.</li> <li>Identify our own custom fields.</li> </ol> <p>If you clients are larger companies, you're almost going to need your own SDK, API's, etc.</p> http://stackoverflow.com/questions/221995/ms-access-front-end-alternative/1665140#1665140 1 Answer by GuinnessFan for MS Access Front-End Alternative? GuinnessFan 2009-11-03T03:53:39Z 2009-11-03T03:53:39Z <p>Out of the 1000's of Access files how many have you been asked to support? I'm guessing less than 100. Why rebuild an application that A) no one uses B) works fine just the way it is?</p> <p>You need to begin a policy that it is an acceptable practice for a large organization to develop custom applications in a robust, scalable, reliable, yadda yadda yadda environment. Identify the Access applications you feel are critical or are being outgrown and just work on those.</p> <p>Be prepared to handle the expectation of getting their quick and dirty little applications on a quick turnaround. You'll have to show them the benefits of your new apps.</p> <p>I think you just need to be a resident expert and teach these users how to improve their application or get your input from the beginning to start them off right. The requirements to convert all of these files would otherwise be overwhelming.</p> http://stackoverflow.com/questions/1659320/downsides-to-with-schemabinding-in-sql-server/1665077#1665077 1 Answer by GuinnessFan for Downsides to "WITH SCHEMABINDING" in SQL Server? GuinnessFan 2009-11-03T03:32:04Z 2009-11-03T03:32:04Z <p>If these tables are from a third-party app (they're notorious for trying hide their tables), you cause and upgrade to fail if it attempts to alter any of these tables.</p> <p>You just have to alter the views without the schemabinding before the update/upgrade and then put them back. Like others have mentioned. Just takes some planning, discipline, etc.</p> http://stackoverflow.com/questions/1665021/sql-command-to-execute-multiple-times/1665048#1665048 0 Answer by GuinnessFan for SQL Command to execute multiple times? GuinnessFan 2009-11-03T03:20:13Z 2009-11-03T03:20:13Z <p>Put the values in an unused table for safe keeping. From there you can insert from this table to the tables you need to setup.</p> http://stackoverflow.com/questions/1664894/tsql-join-efficiency/1665014#1665014 0 Answer by GuinnessFan for TSQL Join efficiency GuinnessFan 2009-11-03T03:11:36Z 2009-11-03T03:11:36Z <p>I would start with indexing, but I have a database that is a third-party application. Creating my own indexes is not an option. I read an article (sorry, can't find the reference) recommending breaking up the query into table variables or temp tables (depending on number of records) when you have multiple tables in your query (not sure what the magic number is). </p> <p>Start with dbo.ca_CompanyConnections, dbo.ca_CompanyConnectors, dbo.ca_Connections. Include the fields you need. And then subsitute these three joined tables with just the temp table.</p> <p>Not sure what the issue is (would like to here recommendations) but seems like when you get over 5 tables performance seems to drop. </p> http://stackoverflow.com/questions/1663505/denormalizing-data-maybe-a-pivot/1663575#1663575 3 Answer by GuinnessFan for Denormalizing Data (Maybe A Pivot?) GuinnessFan 2009-11-02T20:44:02Z 2009-11-02T20:55:37Z <p>You can use pivot. You also need to "Rank" your teachers 1-6. See my comment on how you want to do this. For now:</p> <pre><code>Select StudNumber, TeacherNumber, TeacherRank from ( Select ST.StudNumber , ST.TeacherNumber , ROW_NUMBER() OVER (PARTITION BY ST.StudNumber ORDER BY ST.TeacherNumber) AS TeacherRank From StudentTeacher AS ST) Where TeacherRank &lt;=6 </code></pre> <p>Then you can pivot on this statement. Here is a good explanation: <a href="http://msdn.microsoft.com/en-us/library/ms177410.aspx" rel="nofollow">Using Pivot and UnPivot</a></p> http://stackoverflow.com/questions/1637952/should-entry-level-programmers-be-able-to-answer-fizzbuzz/1638575#1638575 0 Answer by GuinnessFan for Should entry level programmers be able to answer FizzBuzz? GuinnessFan 2009-10-28T16:52:17Z 2009-11-02T14:09:02Z <p>I wouldn't determine hiring based on a right or wrong answer. You hope this would be an exercise in how the person thinks/programs.</p> http://stackoverflow.com/questions/1645870/how-do-you-balance-business-process-changes-against-the-challenges-of-changing-so/1646181#1646181 0 Answer by GuinnessFan for How do you balance business process changes against the challenges of changing software? GuinnessFan 2009-10-29T19:56:24Z 2009-10-29T19:56:24Z <p>That's kind of like the role/strength of the CIO. If the IT side can convince the business side that it would be easier/cheaper/cost effective to change the business process than the code, than you have a point. Otherwise, the quirky business practice may be more valuable than you think. I also doubt that you are making it clear that if you spend time on the quirky problem, you won't deliver the needed features on time (good luck with that).</p> <p>If technologists had their their way, the GUI and the mouse/pointer would never have made it out of the lab. For everyday users, they're here to stay.</p> http://stackoverflow.com/questions/1624725/is-it-ok-to-learn-computer-science-programming-concepts-on-your-own-outside-of-th/1625517#1625517 2 Answer by GuinnessFan for Is it ok to learn computer science/programming concepts on your own outside of those being learned in class? GuinnessFan 2009-10-26T15:36:36Z 2009-10-26T15:36:36Z <p>"Never let school get in the way of your education." -- Mark Twain.</p> http://stackoverflow.com/questions/1586519/is-reading-a-technical-book-chargable-training-time/1586743#1586743 0 Answer by GuinnessFan for Is reading a technical book chargable training time? GuinnessFan 2009-10-19T02:43:42Z 2009-10-19T02:43:42Z <p>My company has put a freeze on training, so I am doing some self-study. I have read during work hours when it is directly related to something I'm working on, but I keep it to a minimum.</p> <p>Unless a contractor was up front about not being knowledgable in a certain area and I wanted to hire them anyway, I would not pay someone to read on my time.</p> http://stackoverflow.com/questions/1575117/recordsets-in-vb-net/1579782#1579782 0 Answer by GuinnessFan for Recordsets in VB.NET GuinnessFan 2009-10-16T18:55:30Z 2009-10-16T18:55:30Z <p>Not sure about your connection. You have an Access tag, but mentioned you tested in SQL Server. If you are using an access .mdb file</p> <p>Imports adodb</p> <pre><code>Public Class Form1 Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click Dim strSQL, strConn As String Dim rsMaster As New ADODB.Recordset Dim objConn As New ADODB.Connection strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\DQ\DQ.mdb" objConn.Open(strConn) strSQL = "select * " &amp; "from tblDQ " &amp; "order by xid, xcode, xDOS" rsMaster.Open(strSQL, objConn, CursorTypeEnum.adOpenForwardOnly, LockTypeEnum.adLockOptimistic) rsMaster.MoveFirst() Me.Text = rsMaster("xcode").Value rsMaster.Close() rsMaster = Nothing End Sub End Class </code></pre> http://stackoverflow.com/questions/1566726/at-a-programming-crossroads-php-net-generalise-or-specialise/1566845#1566845 1 Answer by GuinnessFan for At a Programming crossroads, PHP, .NET, generalise or specialise? GuinnessFan 2009-10-14T14:55:16Z 2009-10-14T14:55:16Z <p>If there are technologies you want to learn, go for it. If you want to get the best job, check out the job boards in your area and see if you qualify. With one year on the proper job, it will be tough to claim expertise when employers usually attach a 3-5 yr amount of experience for Sr. positions. </p> <p>You do need some breadth to your areas of developement (We all do.). When was the last job post that said, "Must be an expert in 'Technology X' no other skills necessary.</p> http://stackoverflow.com/questions/1372618/devexpress-report-with-richtextbox Comment by GuinnessFan on DevExpress Report with richTextBox GuinnessFan 2009-12-01T19:21:53Z 2009-12-01T19:21:53Z When you query the database, do you get properly formated RTF code from this field? http://stackoverflow.com/questions/1820374/sql-server-table-structure-for-storing-a-large-number-of-images/1820406#1820406 Comment by GuinnessFan on SQL Server table structure for storing a large number of images GuinnessFan 2009-11-30T16:50:14Z 2009-11-30T16:50:14Z How would you synchronize a backup restore between the db and the files? This would be difficult with an appliation that manages images that are changed often and requires version control. Seems like the files and the meta data records would be off. http://stackoverflow.com/questions/1820374/sql-server-table-structure-for-storing-a-large-number-of-images Comment by GuinnessFan on SQL Server table structure for storing a large number of images GuinnessFan 2009-11-30T16:47:40Z 2009-11-30T16:47:40Z @dnagirl - curious, how do you keep files and meta data records synchronized? If images are changed often (photo editing with versioning), I would imagine restoring a db and a file backup would result in orphan data? http://stackoverflow.com/questions/1756293/split-the-output-rows-in-groups-in-sql-server/1756742#1756742 Comment by GuinnessFan on Split the output rows in groups in SQL Server GuinnessFan 2009-11-18T16:19:27Z 2009-11-18T16:19:27Z -1 Maybe Mr Shoubs could edit and include the question being answered. http://stackoverflow.com/questions/1751140/what-is-wrong-with-this-sql/1751202#1751202 Comment by GuinnessFan on What is wrong with this SQL? GuinnessFan 2009-11-18T01:07:05Z 2009-11-18T01:07:05Z Date would be a more likely candidate as a reserved word causing a problem. http://stackoverflow.com/questions/1750932/select-from-multiple-tables-matching-multiple-criteria/1750975#1750975 Comment by GuinnessFan on Select from multiple tables matching multiple criteria GuinnessFan 2009-11-17T19:25:24Z 2009-11-17T19:25:24Z +1 Although other solutions will give the same result, I think using Exists matches the request of &quot;have a record in the notes table of type order or order2&quot; the most. Also, fields from the notes table are not required. http://stackoverflow.com/questions/1750932/select-from-multiple-tables-matching-multiple-criteria Comment by GuinnessFan on Select from multiple tables matching multiple criteria GuinnessFan 2009-11-17T19:19:19Z 2009-11-17T19:19:19Z Can you list one of your attempts? http://stackoverflow.com/questions/1749067/help-determining-maintenance-item-table-structure-best-practice/1749391#1749391 Comment by GuinnessFan on Help determining Maintenance Item table structure best practice GuinnessFan 2009-11-17T15:09:40Z 2009-11-17T15:09:40Z This allows you to track other information about these individual entities: RaceTrack.SeatingCapacity, Driver.CorporateSponsor, Car.Manufacturer, ect. and is pretty much a Fact of Life in relational big ciy and not the end of the world. http://stackoverflow.com/questions/1740990/how-can-i-add-a-button-to-an-access-report-to-export-it-to-excel-pdf Comment by GuinnessFan on How can I add a button to an Access report to export it to Excel / PDF? GuinnessFan 2009-11-16T16:32:06Z 2009-11-16T16:32:06Z How is this not programming? http://stackoverflow.com/questions/1728698/access-query-to-filter-and-combine-count/1728716#1728716 Comment by GuinnessFan on access query to filter and combine count GuinnessFan 2009-11-13T13:30:42Z 2009-11-13T13:30:42Z Changed my mind. He wants to combine the counts from both tables based on the num. http://stackoverflow.com/questions/1728698/access-query-to-filter-and-combine-count/1728716#1728716 Comment by GuinnessFan on access query to filter and combine count GuinnessFan 2009-11-13T13:28:16Z 2009-11-13T13:28:16Z I agree on the union. http://stackoverflow.com/questions/1724791/access-2007-one-to-two-columns-referential-integrity/1725719#1725719 Comment by GuinnessFan on Access 2007 one-to-two columns referential integrity GuinnessFan 2009-11-12T22:06:11Z 2009-11-12T22:06:11Z +1 - not sure what Gratzy came up with on the comment. http://stackoverflow.com/questions/1724791/access-2007-one-to-two-columns-referential-integrity Comment by GuinnessFan on Access 2007 one-to-two columns referential integrity GuinnessFan 2009-11-12T19:40:29Z 2009-11-12T19:40:29Z user_id is the primary key in users? http://stackoverflow.com/questions/1722741/defining-a-one-to-one-relationship-in-sql-server/1722759#1722759 Comment by GuinnessFan on Defining a one-to-one relationship in SQL Server GuinnessFan 2009-11-12T17:08:01Z 2009-11-12T17:08:01Z So if I have key in tableA = 3 and key in tableB = 4, they are unique within their table but there is no relationship. http://stackoverflow.com/questions/1723608/select-top-5-records-of-every-employee-in-sql-server Comment by GuinnessFan on Select Top 5 records of every employee in SQL Server GuinnessFan 2009-11-12T16:54:44Z 2009-11-12T16:54:44Z @Gavin - This would only give 5 results across all employees and not the top 5 results for each employee