It would be good for consistency in the catalog description if all instances
of numbers were either integers or words, not arbitrarily some of each.
So:
Three eyeballs, Three earlobes
or
3 eyeballs, 3 earlobes
not
Three eyeballs, 3 earlobes
...that kind of thing.
There are pros and cons for each option. Please investigate how the search mechanism
works to see which option yields better results.
Unfortunately, single digits are thrown out of many of the search results. But
I think in general one would find more numerals in item names than the words
spelled out simply because it makes the name shorter.
Unfortunately, single digits are thrown out of many of the search results.
Aren't you the fella to talk to to get that changed, Mister Site Manager?
But I think in general one would find more numerals in item names than the words
spelled out simply because it makes the name shorter.
While that is undoubtedly true, it's not particularly helpful in any way.
If you search, say, legs assemblies...
search for "three" you get two results
search for "3" you get: The following keywords were excluded from your search:
3
...however there are 13 entries containing "3"
Isn't the point of StormBluser's standardization plan to fix this stuff?
To paraphrase the StormBluser: why name something like this when 75% of the search
words are invalid?
Again, I'll make the point you need to distinguish between identification
and discovery. The identification of a thing is irrelevant if it can't be
discovered. People use the search box to find things, they don't browse 180,000
individual items looking for "3". Hope you get my drift.
Aren't you the number one proponent of making the catalog useful? Let's
figure out a way to make it useful.
It would be good for consistency in the catalog description if all instances
of numbers were either integers or words, not arbitrarily some of each.
So:
Three eyeballs, Three earlobes
or
3 eyeballs, 3 earlobes
not
Three eyeballs, 3 earlobes
...that kind of thing.
There are pros and cons for each option. Please investigate how the search mechanism
works to see which option yields better results.
Unfortunately, single digits are thrown out of many of the search results. But
I think in general one would find more numerals in item names than the words
spelled out simply because it makes the name shorter.
Please drop the keyword exclusion altogether.
It does not make sense to make use of a full text English language keyword exclusion
list, when the contents of the database is actually not normal full text English,
but a specific dialect: Bricklink English (EN-BL) in which it makes more sense
to search for keywords like 'with' and 'without' and for single
digits. It should be easy to adjust the database configuration. No programming
involved.
It would be good for consistency in the catalog description if all instances
of numbers were either integers or words, not arbitrarily some of each.
I have noticed this before and definitely agree it needs to be worked on. The
problem is (and I'm starting to understand the rearranging the chairs thing)
there are too many problems.
In the case of this problem, you can't even find the problem because you
can't search for it. So it would involve examining every single catalog
entry. All 100K+ of them.
And perhaps, when the next problem comes along, examining all of them again.
It almost makes a person think that there must be a better way . . .
In the case of this problem, you can't even find the problem because you
can't search for it. So it would involve examining every single catalog
entry. All 100K+ of them.
What do you want to find?
Something like this?
"* three *" = 153 results
"* 3 *" = 6675 results
"* three *" AND "* 3 *" = 16 results
As example, last search find:
"Technic, Panel Car Spoiler 3 x 8 with Three Holes and Black and Yellow Danger
Stripes and Mud Pattern (Stickers) - Set 7968"
"Primo Brick 1 x 1 with Three Flowers and Number 3 on Opposite Side Pattern"
Of course,I made query to find only for "three" and "3" on same description,
but with a regexp it should be simple to spot every "word digit" with "digit"
on same description like "blah with two legs and 1 arm"
Some other incoherence (digit 3 should be between '' when you have pattern
after):
"*number 3 *pattern*" = 22 result
"*number '3' *pattern*" = 3 result
If you know what you want to find, it should be easy to make a search query,
to spot the majority of incoherence.
It would be good for consistency in the catalog description if all instances
of numbers were either integers or words, not arbitrarily some of each.
I have noticed this before and definitely agree it needs to be worked on. The
problem is (and I'm starting to understand the rearranging the chairs thing)
there are too many problems.
In the case of this problem, you can't even find the problem because you
can't search for it. So it would involve examining every single catalog
entry. All 100K+ of them.
And perhaps, when the next problem comes along, examining all of them again.
It almost makes a person think that there must be a better way . .
The answer is really quite simple - talk to a SQL person and they will advise
you how to organise your query to find precisely what you want. It isn't
rocket science. .
And perhaps, when the next problem comes along, examining all of them again.
It almost makes a person think that there must be a better way . . .
Export the catalog to txt, and open in Excel. This will give you pretty much
unlimited ability to search. Write an Excel formula to find what you are looking
for. You can even write a formula to create the desired replacement title
if you like, then just copy paste the change back to BL.
Regexp is a little harder to do, but Google “Excel Regexp” and you’ll get some
examples how to create your own function Using Excel VB.
And perhaps, when the next problem comes along, examining all of them again.
It almost makes a person think that there must be a better way . . .
Export the catalog to txt, and open in Excel. This will give you pretty much
unlimited ability to search. Write an Excel formula to find what you are looking
for. You can even write a formula to create the desired replacement title
if you like, then just copy paste the change back to BL.
Regexp is a little harder to do, but Google “Excel Regexp” and you’ll get some
examples how to create your own function Using Excel VB.
Or if you are just not into programming or that technical you could follow the
guidelines set out here for using the advanced filter option in Excel
My preferred option is to let your SQL guy (that is if you have one. Our belief
from the Chicago round table discussion was that none of the developers at that
time had any SQL experience whatsoever) spend 10 minutes producing your query
(9 minutes for understanding the table and 1 minute for writing the query. Once
the results are in front of you it might be possible for your sql guy to write
an update query to do all the updates at once.
This is almost as simple as changing colour names from one to another
And perhaps, when the next problem comes along, examining all of them again.
It almost makes a person think that there must be a better way . . .
Export the catalog to txt, and open in Excel. This will give you pretty much
unlimited ability to search. Write an Excel formula to find what you are looking
for. You can even write a formula to create the desired replacement title
if you like, then just copy paste the change back to BL.
Regexp is a little harder to do, but Google “Excel Regexp” and you’ll get some
examples how to create your own function Using Excel VB.
Or if you are just not into programming or that technical you could follow the
guidelines set out here for using the advanced filter option in Excel
My preferred option is to let your SQL guy (that is if you have one. Our belief
from the Chicago round table discussion was that none of the developers at that
time had any SQL experience whatsoever) spend 10 minutes producing your query
(9 minutes for understanding the table and 1 minute for writing the query. Once
the results are in front of you it might be possible for your sql guy to write
an update query to do all the updates at once.
This is almost as simple as changing colour names from one to another
Guess what - as an exercise I just tried this in Brickstok - it works a treat.
Use the filters to suggest the description contains a number or the word for
that number.
The only problem is once it found them all I could not easily mass update them.
The search works great though.
My preferred option is to let your SQL guy (that is if you have one. Our belief
from the Chicago round table discussion was that none of the developers at that
time had any SQL experience whatsoever) spend 10 minutes producing your query
(9 minutes for understanding the table and 1 minute for writing the query. Once
the results are in front of you it might be possible for your sql guy to write
an update query to do all the updates at once.
This is almost as simple as changing colour names from one to another
Of course changes should be made on DB directly with write logs into "change-log
table" as well (to have an history of what is made)
But for that, you need SQL guy (not your nephew) and "real" database.
Please don't play with Excel
My preferred option is to let your SQL guy (that is if you have one. Our belief
from the Chicago round table discussion was that none of the developers at that
time had any SQL experience whatsoever) spend 10 minutes producing your query
(9 minutes for understanding the table and 1 minute for writing the query. Once
the results are in front of you it might be possible for your sql guy to write
an update query to do all the updates at once.
This is almost as simple as changing colour names from one to another
Of course changes should be made on DB directly with write logs into "change-log
table" as well (to have an history of what is made)
But for that, you need SQL guy (not your nephew) and "real" database.
Please don't play with Excel
No fears I am not a programmer and neither is he - we leave it to those that
have a passion for it.
My preferred option is to let your SQL guy (that is if you have one. Our belief
from the Chicago round table discussion was that none of the developers at that
time had any SQL experience whatsoever) spend 10 minutes producing your query
(9 minutes for understanding the table and 1 minute for writing the query. Once
the results are in front of you it might be possible for your sql guy to write
an update query to do all the updates at once.
This is almost as simple as changing colour names from one to another
Of course changes should be made on DB directly with write logs into "change-log
table" as well (to have an history of what is made)
But for that, you need SQL guy (not your nephew) and "real" database.
Please don't play with Excel
No fears I am not a programmer and neither is he - we leave it to those that
have a passion for it.
How can I say?
The "you" on my messages was not directed to a specific person,it's addressed
to everybody and nobody
I totally support this change
Consistency is key
Maybe search and change all you can find and then put it out there on here for
messages about items missed. That’s if the sql person is on holiday or unavailable