GuinnessFan

1,782
reputation
349 views

Registered User

name GuinnessFan
member for 10 months
seen 1 hour ago
website
location Earth
age 46
Former teacher turned programmer over 10yrs ago.
10h
answered ASP.NET and Access Databases
11h
comment SQL Query to compare
exists will not work with MS-Access.
1d
comment SQL Query to compare
What happens when query2.number is null? These could be phone numbers for all we know.
1d
comment Coding Priorities: Performance, Maintainability, Reusability?
You are correct that most development fails to reuse code when it should as oppose to reusing code when you should not.
1d
comment SQL server Query help
My bad. I thought it was like SO.
1d
answered When to try and tune the SQL or just summarize data in a table?
1d
answered SQL server Query help
1d
answered SQL Server Management Studio: Increase number of characters displayed in result set
1d
comment Coding Priorities: Performance, Maintainability, Reusability?
I guess when we think of NASA, we think launching rockets and not processing payroll.
2d
comment MS Access tables match and synchronize
How are these computers connected? LAN?
2d
comment Combining two T-SQL pivot queries in one
Combine how? Can you give a result set example?
Dec
11
comment How do I query a property on a record source for a Access 2002 report in code?
If there is a control that has this field as the control source, you can reference by the control source name and not necessarily the name of the control. Whether you want to make it visible is up to you.
Dec
10
revised How do I query a property on a record source for a Access 2002 report in code?
added 80 characters in body
Dec
10
comment How do I query a property on a record source for a Access 2002 report in code?
See correction.
Dec
10
comment Using Ruby for platform-independent application.
Links, code example, awesome!
Dec
10
comment How to upgrade the version of Python used by Apache?
If you don't get the response here, you may want to try serverfault.com .
Dec
10
comment Good Free Alternative To MS Access
Isn't this just going to let you manage the database and not actually create a "lightweight Desktop application"?
Dec
10
answered MS-Access - why can’t this update query fill empty cells?
Dec
10
answered How do I query a property on a record source for a Access 2002 report in code?
Dec
9
comment Concatenate row values T-SQL
God, I love answers like this!
Dec
9
answered Concatenate row values T-SQL
Dec
7
answered Can someone copyright a SQL query?
Dec
5
revised What is the difference between Windows Azure and Amazon Elastic Compute Cloud?
Microsoft not exclusive.
Dec
5
answered What is the difference between Windows Azure and Amazon Elastic Compute Cloud?
Dec
5
revised Select from hundreds of tables at once (.mdb)
edited tags
Dec
5
comment MS Access 2003 - Really simple question
When you were running the import/link process, did you see any table links?
Dec
5
answered how to comment sentence in sql query - in access 2007 ?
Dec
5
comment End User Ad-Hoc Reporting Tool: Microsoft SQL Server Management Studio or Microsoft Access?
As part of your SQL Server security users would not be able to see tables where they are denied all permissions.
Dec
4
comment End User Ad-Hoc Reporting Tool: Microsoft SQL Server Management Studio or Microsoft Access?
I worked at a firm where accountants used SSMS and Excel for everything. They took courses in both. They did not like being switched to report writing software because a) they prefered text sql and the text version in this app was bad (similar to access). b) they did not know how to take advantage of the sharing and reusability of this app. In their mind, everything was unique, one-off, ad hoc etc. - very territorial in that regard.
Dec
4
answered End User Ad-Hoc Reporting Tool: Microsoft SQL Server Management Studio or Microsoft Access?
Dec
4
comment How to Launch External SQL from an MS Access Link
I added additional code you could place in a .bat file in any folder containing .sql files and it would execute all of them and still send results to the text file.
Dec
4
revised How to Launch External SQL from an MS Access Link
BATCH
Dec
4
answered How to Launch External SQL from an MS Access Link
Dec
3
comment DevExpress Xtra Report: How to display a label in group footer when the detail band does not have any data?
The group header/footer bands do not have a setting to print when there is no record, so this sub would not be executed.
Dec
1
answered Strategy for avoiding a common sql development error (misleading result on join bug)
Dec
1
asked DevExpress Xtra Report: How to display a label in group footer when the detail band does not have any data?
Dec
1
comment DevExpress Report with richTextBox
When you query the database, do you get properly formated RTF code from this field?
Nov
30
answered Process for handling expiring airline miles
Nov
30
comment SQL Server table structure for storing a large number of images
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.
Nov
30
comment SQL Server table structure for storing a large number of images
@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?
Nov
19
answered SqlServer performance with a large number of tables in database
Nov
17
answered What is wrong with this SQL?
Nov
17
comment Select from multiple tables matching multiple criteria
+1 Although other solutions will give the same result, I think using Exists matches the request of "have a record in the notes table of type order or order2" the most. Also, fields from the notes table are not required.
Nov
17
comment Select from multiple tables matching multiple criteria
Can you list one of your attempts?
Nov
17
comment Help determining Maintenance Item table structure best practice
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.
Nov
16
accepted How to save VBA variable in database?
Nov
16
answered How to save VBA variable in database?
Nov
16
comment How can I add a button to an Access report to export it to Excel / PDF?
How is this not programming?
Nov
13
comment access query to filter and combine count
Changed my mind. He wants to combine the counts from both tables based on the num.
Nov
13
comment access query to filter and combine count
I agree on the union.