|
Is there a simpler interface for end users to run "queries" on pre-existing SqlServer Analysis Service cubes? I'm looking for a way to deploy the cubes and allow the users to work with the data through a simpler interface than BIDS. Is this even possible...
Started by Barry on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
It uses an AJAXy....
Our tool - RSinteract , is quite cheap and effective .
You can use Excel with pivot tables for that, no need to write any queries at all, they can drill down to all the data they need
There's a couple of End User Reporting Tools around .
|
|
This is what i have currently
if($j == 1 || $j == 2 || $j == 3)
Is there a simpler way of writing this. Something like...
pseudocode
if($j == 1-3)
Started by Patrick on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's one way using in_array()
if (in_array($j, array(1,2,3))) { //do something }
Or how about using range() to make the array
if (in_array($j, range(1,3))) { //do something }
However, building an array just to check a narrow, contiguous range like that... .
|
|
I have seen this question about deploying to WebSphere using the WAS ant tasks.
Is there a simpler way to do this? In the past I have deployed to Tomcat by dropping a war file into a directory. I was hoping there would be a similar mechanism for WebSphere...
Started by Michael Sharek on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Just a hint: if you activate "Log command assistance commands" in System Administration / Console preferences, you will get a logfile in the server log directory ... .
See those samples at IBM site.
One way to do it could be using Jython or jacl scripts .
|
Ask your Facebook Friends
|
I want to parse out each modified file that is reported during FCIV's verification process.
It comes out like this:
"Microsoft Windows XP [Version 5.1.2600]\r\n(C) Copyright 1985-2001 Microsoft Corp.\r\n\r\nC:\MD5Checksum>C:\MD5Checksum\fciv.exe -v...
Started by Rorschach on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Second, since I don't think you care about "Here is" or "It should be", you can simply look for ":" just before the... .
I suggest you to try this:
".*[^:]*: [a-zA-Z0-9]{32}[^:]*: [a-zA-Z0-9]{32}"
First, you don't need to "(..)" or "[...]" one every token .
|
|
Hi,
In the application there is a string in the following format:
String elements = "[11, john,][23, Adam,][88, Angie,]..." (... means there are more elements in the string)
From the given string I have to create an ArrayList for name IDs (11, 23, 88,...
Started by niko on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I would suggest using....
If you parse id and name individually, without encapsulating them into an obvious object, you aren't thinking in terms of objects .
Two ArrayLists? I think you need one List containing object type Item with id and name attributes .
|
|
Following on the tails of my previous (answered) question ...
SharpSvn makes calling the Subversion client API simple:
SvnClient client = new SvnClient(); client.Authentication.DefaultCredentials = new NetworkCredential(username, password); client.CheckOut...
Started by JeffH on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at stackoverflow):
Or even maybe stick to VC2003 and go SharpSvn with Managed C++ ? (not that I have any knowledge on the how od even the if)
edit: oh well, SharpSvn's homepage explicitely... .
Can you upgrade to Visual C++ 2005 ? If so, you could just go using SharpSvn with C++/CLI .
|
|
Hi,
I'm planning on making a self-moderated site where people ca share specific information on tons of items. It will be as following:
If the item a site visitor is looking for isn't available, he can create it. Registration is not needed. Other visitors...
Started by KeyStroke on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Well I believe that if you know how.
Even simpler is something like Faq-O-Matic .
Is terribly complex).
|
|
I couldn't find anything ready-made, so I came up with:
class membuf : public basic_streambuf<char> { public: membuf(char* p, size_t n) { setg(p, p, p + n) } }
Usage:
char *mybuffer; size_t length; // ... allocate "mybuffer", put data into it, set...
Started by Marcin Seredynski on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In a simpler way:
#include <stdint.h> #include <iostream> #include <boost/iostreams.
|
|
Do you know any SQLite-like database that stores its data in easily readable plain text format (like multi-line json or yaml)?
I'd like to store some data along with my project in version control system but if I use sqlite I can't merge data changes that...
Started by Kamil Szot on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
You can.
MongoDB has a lot in common with CouchDB, but simpler.
Mbox format), uses such technique.
|
|
I am reviewing a database model. I need some help with a part of the model. At this stage I'm just concerned with the logical model, not the implementation. I want to adopt a best practice.
Summary of problem
The database is used by an app that manages...
Started by emeargnc on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
With option 1, you'd be able to add or remove Persons or Organizations from a Party by adding or removing records from the many-to-many tables, whereas with option 2, if you start out with a simple single Person or single... .
I think option 1 is more flexible.
|