|
Hi,
I am using JMeter and have 2 questions (I have read the FAQ + Wiki etc):
I use the Graph Results listener . It seems to have a fixed span, e.g. 2 hours (just guessing - this is not indicated anywhere AFAIK), after which it wraps around and starts ...
Started by Shaul Dar on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Just make sure you don't run the test again while that file is selected, otherwise you will lose .
You can load results from a previous test into a visualizer the results.
results efficiently for later analysis.
|
|
I have a table of "items", and a table of "itemkeywords". When a user searches for a keyword, I want to give him one page of results plus the total number of results.
What I'm doing currently is (for a user that searches "a b c":
SELECT DISTINCT {fields...
Started by Daniel Magliola on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Queries:
SELECT DISTINCT {fields I want}, count(*) as results FROM itemkeywords JOIN items WHERE 10 results should be shorter then one that has to find all the results for the count that wouldn't change as the user browsed the pages....
|
|
I am trying to call SearchListItems to progamatically get search results. My code is pretty simple:
SPSite site = new SPSite(siteUrl); SPWeb web = site.OpenWeb(); SPSearchResultCollection resultListItems = null; resultListItems = web.SearchListItems(keyword...
Started by Mike Polen on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
-Oisin
The....
If that's not it, the other possibility is that you have not enabled FullText search in Central Administration .
Does the account you're running the code as have access to the list items? Perhaps they're being removed by the security trimmer .
|
Ask your Facebook Friends
|
Hello,
I have a list of 9 user id's and want to select 3 entries per user id.
My current query looks like this.
SELECT * FROM entries WHERE user_id IN (1,2,3,4,5,6,7,8,9) LIMIT 27
Some users have many more than 3 entries, so I want to limit the results...
Started by Tony on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Do you really....
I find it hard to believe that a simple UNION is "very slow on the server" unless you have a poorly indexed table, or are selecting some huge columns .
If you are merely selecting 3 random entries, then a UNION is probably the best approach .
|
|
When querying with LDAP against our Active Directory structure to look up user accounts, some records (but not all) are missing certain key fields, specifically memberOf and userAccountControl (which has a bit flag that indicates whether the account is...
Started by Otus on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In this case you....
Maybe they where changed in the ou level of some of the users .
Somehow thay must have been changed, and you will have to restore them to default .
You can check the permission on the specific field of the specific users with adsi edit .
|
|
I am retuning table results for different queries but each table will be in the same format and will all be in one final table. If I want the results for query 1 to be listed first and query2 second etc, what is the easiest way to do it?
Does UNION append...
Started by zsharp on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In practice, this usually comes back chronologically, but I would... .
The SQL standard does not guarantee an order unless explicitly called for in an order by clause .
UNION appends the second query to the first query, so you have all the first rows first .
|
|
I have a decent, lightweight search engine working for one of my sites using MySQL fulltext indexes and php to parse the results. Work fine but I'd like to offer more 'google-like' results with text snippets from the results and the found words highlighted...
Started by phirschybar on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Its usage would be semantic as you are putting FOR EACH result $result = "Something something hello there yes world fun nice"; $highlighted = preg_replace($regex, '<strong>$....
Your results, you can use the <strong> tag.
|
|
I need a c# code to output xml results for google search results.
Please help!
Started by Jaison on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
"Code" will depend on the XML returned and what you need to extract from that data... .
TTBOMK Google dont offer similar APIs, hence anything else would be a third-party quasi-sanctioned approach .
It's not what you asked for, but you could use Bing APIs .
|
|
I have a strange problem,
my MSBuild runs tests, code-coverage and publishing fine (part of the build.txt shown):
Results Top Level Tests Passed BuildTestProject.UnitTest1.TestMethod1 Passed BuildTestProject.UnitTest1.TestMethod2 2/2 test(s) Passed .....
Started by Bart Janson on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
W00t!.
I read somewhere (after searching publishes the results.
Itself had problems with publishing the results to my buildAgent.
|
|
I think this might be more accurately called "paging"... not sure. I am getting a chunk of XML (lets say 100 nodes) I then want to display only a set number of them at a time on a page. How do you do this?
For reference, in .NET it would be something ...
Started by rg88 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Xpath returns an array of SimpleXMLElement objects, so you could do something like:
$result = $xml sure that $result[$i] exists // Then handle printing $result[$i] }.
|