Viewing 15 posts - 316 through 330 (of 2,612 total)
In which cube browser?
Measures in the cube have a format string property that most browsers seem to support.
December 5, 2008 at 10:36 am
Anyone catch the question before it was edited?
http://www.sqlservercentral.com/Forums/Topic614696-146-1.aspx
Go Steve for calling someone's question silly...
December 5, 2008 at 10:35 am
You mentioned GUID's. Do you have a clustered index on a GUID on the table? If you do, I would recommend you try to find another field you...
December 5, 2008 at 5:49 am
The answer is no. You would not always want a covering index.
In your example, you are referring to a table that is used for a specific report that calls...
December 5, 2008 at 5:01 am
Do you have some reindexing or other maintenance happening on the SQL 2000 box at night? A lot of maintenance is logged, so it may be causing numerous transactions...
December 5, 2008 at 4:52 am
Yes, but the syntax does not use IF or ELSE.
It uses "?" and ":"
@Var==1 ? "A" : "B"
December 4, 2008 at 12:21 pm
Will they be in the same folder?
One of the simplest ways to deal with this is to change the name of the file or copy it to a static location...
December 4, 2008 at 9:50 am
What are you planning on using the output of this for?
It's a rather ugly design regardless, but it will make a big difference in what you can do if you...
December 4, 2008 at 6:50 am
I am not sure you understand web-based software development. "Most" web-based applications are thin clients that do not require anything other than a web browser or possibly a plug-in.
I...
December 4, 2008 at 6:43 am
Can you post more about what you are trying to accomplish rather than how you are trying to do it? When you find yourself trying to run dynamic SQL...
December 4, 2008 at 6:20 am
If you are building a web application, isn't your client just running a web browser?
December 4, 2008 at 6:15 am
I am not sure how you want someone to respond to this post. Do you want someone to answer these questions so you can interview someone else? Are...
December 4, 2008 at 6:08 am
To start with, right-click in the middle of the control flow and select "Logging" to turn on package logging. This will log events such as starts and ends of...
December 2, 2008 at 11:21 am
That custom component is a nice find.
Thanks Jack.
December 2, 2008 at 11:13 am
You can convert or cast it to a VARCHAR and strip off the time:
SELECT CONVERT(VARCHAR,GETDATE(),101)
Look up CAST or CONVERT in books online.
If this is just for display purposes, stripping time...
December 2, 2008 at 7:20 am
Viewing 15 posts - 316 through 330 (of 2,612 total)