|
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 would like to start some questions about simplifying different expressions in F#.
Anyone have ideas for better and/or simpler implementation of insertAt (parameters could be reordered, too). Lists or Sequences could be used.
Here is some start implementation...
Started by The_Ghost on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
From the Haskell Wiki - http://www.haskell.org/haskellwiki/99_questions/21_to_28
insertAt :: a -> [a] -> Int -> [a] insertAt x ys 1 = x:ys insertAt x (y:ys) n = y:insertAt x ys (n-1)
I'm not an F# programmer so I don't know the equivalent syntax... .
|
Ask your Facebook Friends
|
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 .
|
|
I recently had to struggle with one installation project (which uses most popular product for creating installations: InstallShield) to make it work for product upgrades (migrating from one version to another). In the end it turned out that I needed to...
Started by Hemant on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you looked at NSIS: http://en.wikipedia.org/wiki/Nullsoft_Scriptable_Install_System ?
And 1: Yes, 2: No
For exactly the reasons you state, we've done internal releases, handled by the dev team by copying the required files, and then done the rest... .
|
|
Maybe simpler isn't the proper word; terse might do as well. I'm well-aware that Objective-C is a verbose language; I'm just wondering if it has to be as verbose as it is in the solution I'm showing below. I'm relatively new to the language.
This piece...
Started by hkatz on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
L", [NSNumber numberWithUnsignedInt: self.leftVent ? 1 : 0], @"r", [NSNumber numberWithUnsignedInt: self.rightVent ? 1 : 0],
will shorten it by 2 lines
You could also change [[NSDictionary alloc] initWithObjectsAndKeys:] to [NSDictionary dictionaryWithObjectsAndKeys... .
|
|
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).
|