graham.reeds

4,125
Reputation
931 views

Registered User

Name graham.reeds
Member for 1 year
Seen 22 hours ago
Website
Location GB
Age 32
A SCADA/HMI programmer from the UK, now working with VB6/VB.NET
21h
comment What do you do to write better code?
@envalid: 'My coworkers wouldn't do reviews if their lives depended upon it (and I have tried numerous times).' So if they didn't do the code reviews you asked for, you killed them? All of them? Where do you store the bodies?
1d
asked Report fails with ‘A severe error occurred…’
2d
comment Any reason not to start using the HTML 5 doctype?
Canvas: Want to use it? You can't. Or you can, but you are now in the land of targeted programming. Which is not the point of standards.
2d
awarded  Notable Question
Nov
25
awarded  Peer Pressure
Nov
25
revised how to use cpp unit
Updates
Nov
25
comment how to use cpp unit
Another good book that I own too.
Nov
25
comment how to use cpp unit
I have to say the section on levelisation is probably the most boring section (and largest) of the book, which I have to admit is very good. It probably has something to do with it being his dissertation for his doctorate.
Nov
25
answered how to use cpp unit
Nov
23
comment Any reason not to start using the HTML 5 doctype?
@Laurent: So if I want a header to be now a sidebar, I have to go through all my css and markup switching them around because it's no longer semantically correct? No. Make it a div, call it what it does and use it how you will. @Laith:In what respect will it be good for search engines?
Nov
19
answered what libraries do i need to run this keygenerator class
Nov
18
revised Concat multiple rows into a comma-delimited value during Update
Correction
Nov
18
comment Are you using C++0x today?
I changed company from a VC6 shop: I now use VB6 so it's not always a step in the right direction.
Nov
17
comment Select column, if blank select from another
Moving the answer to yours as it is more elegant than the Case statement.
Nov
17
comment Select column, if blank select from another
Answer - yes you can: COALESCE(NULLIF(Address2,''), NULLIF(Address3,''), Address4)
Nov
17
comment Select column, if blank select from another
Interesting...can it be easily extended to work with 3 columns?
Nov
17
comment Select column, if blank select from another
I assume you could make it support N number of expressions since COALESCE does anyway via case statement like Raj More.
Nov
17
comment Select column, if blank select from another
I can't seem to get it working: SELECT IF(Address2!='', Address2, Address3) AS Address FROM Sites gives Incorrect syntax near the keyword 'IF'.
Nov
17
comment Select column, if blank select from another
Nice, but if I need to work more than 2 columns will be a pain.
Nov
17
comment Select column, if blank select from another
This is what I had got on my own but is very ungainly.
Nov
17
asked Select column, if blank select from another
Nov
17
answered I need to print 20,000 Word documents, is there a 3rd party tool that will help me do this or do I need to write custom code?
Nov
16
comment Merge these two queries into a single query
This suffers from the same problem I and the others who have tried run into: The summed values change when either DLData or Delivery is added.
Nov
11
comment The future of SSRS
This is a good article: simple-talk.com/sql/reporting-services/… I list the two I want - vertical merging and horizontal tables. We make heavy use of them here.
Nov
11
comment Merge these two queries into a single query
That's what I tried (with a variety of joins) - the numbers return skew as the number of rows change due to the joins themselves.
Nov
11
comment Merge these two queries into a single query
No, since the idea is to reduce these to a single query. The only fields of relevance are the SUM ones. The rest are for comparison with known results.
Nov
11
asked Merge these two queries into a single query
Nov
11
comment Ill formed code snippets
Why would you want to do this? Neither code makes much sense.
Nov
11
revised Ill formed code snippets
code tags
Nov
11
revised Ill formed code snippets
added 100 characters in body
Nov
11
asked The future of SSRS
Nov
10
comment MySQL storage engine decision
This SO question could be of help: stackoverflow.com/questions/1680023/…
Nov
6
revised how to initialize a Singleton?
Spelling in title
Nov
6
comment Merging Cells Vertically in SQL Reporting 2008
That sucks. We are looking into replacing our Excel generated reports with SSRS and a lot of our reports have vertical merged cells.
Nov
6
comment Concat multiple rows into a comma-delimited value during Update
IIANM xml path is a 2005+ option. Our server is a creaky SS2K boxen.
Nov
6
comment Concat multiple rows into a comma-delimited value during Update
Well the UDF I implemented has the exact same code as what I was trying to run in the query but works correctly (and obviously from that statement works with the temporary table).
Nov
5
comment Concat multiple rows into a comma-delimited value during Update
I never thought of using cursors for this. However it suffers from the same problem that UDF does - lack of readability.
Nov
5
comment What exactly is the danger of using magic debug values (such as 0xDEADBEEF) as literals?
Jon, this might have been asked/answered elsewhere but why did you change your name to Tony the Pony?
Nov
5
revised Concat multiple rows into a comma-delimited value during Update
Example of how I would like the expanded data to look like.
Nov
5
revised Concat multiple rows into a comma-delimited value during Update
more gramma
Nov
5
revised Concat multiple rows into a comma-delimited value during Update
gramma
Nov
5
asked Concat multiple rows into a comma-delimited value during Update
Nov
4
comment Calculate Percentage from two colums and write back to table
I can't believe it was that simple! However it is a moot point as I ended up calculating the percentage in reporting services via an expression.
Nov
4
comment When will I get my certificate?
Because that is a problem you should take up with Sun, not SO.
Nov
4
comment Calculate Percentage from two colums and write back to table
Looking at that it won't work because MS-SQL Server doesn't allow aliasing of tables in update statements.
Nov
4
comment Calculate Percentage from two colums and write back to table
SQL Server 2000.
Nov
4
comment Calculate Percentage from two colums and write back to table
Appears you are not allowed to Alias Tables in update statements.
Nov
4
comment Calculate Percentage from two colums and write back to table
It gives Invalid Syntax for oResult. Tried both equals and AS and neither works.
Nov
4
asked Calculate Percentage from two colums and write back to table
Nov
2
answered How can a client gracefully detect when a server disconnects?