Viewing 15 posts - 1,591 through 1,605 (of 3,482 total)
March 14, 2017 at 11:03 pm
I don't think a negative size makes sense in a TreeMap. How would that be represented when it expresses a number as a size?
March 13, 2017 at 4:17 pm
Here's an article that shows you how...
https://www.mssqltips.com/sqlservertip/3453/sql-server-reporting-services-reports-with-optional-query-parameters/
March 13, 2017 at 4:07 pm
What did you try? As stated, it almost sounds like homework.
"PatchTime column which is nvarchar datatype" Why? Because storing it as a date with time would be too...
March 3, 2017 at 12:47 am
Are you saying that there is a database for which you are the admin? Then you can put DelimitedSplit8K there and reference it using the 4-part naming syntax. Lots of...
March 2, 2017 at 10:05 pm
Are you connecting to Oracle?
If you are always going to filter a column, you could use a parameterized stored procedure...
CREATE PROC GetMyData
@param1 VARCHAR(20)
AS
SELECT...
February 28, 2017 at 5:01 pm
If the two datasets have one or more fields in common, then you can use LOOKUP, otherwise, you're stuck I think.
February 28, 2017 at 2:17 pm
Does the GetData dataset have a DepartmentID or some way to relate the two datasets? You could use LOOKUP to grab a value from the other dataset. Then hiding the...
February 28, 2017 at 1:46 pm
DECLARE @Ref VARCHAR(7) = '103-B00';
SELECT LEFT(@Ref,CHARINDEX('-',@Ref,1)-1);
February 25, 2017 at 9:07 pm
Consumable data?
February 25, 2017 at 11:17 am
Can you post the values assigned to the input parameters when you called it? And the CREATE TABLE script for the table you're inserting into?
February 24, 2017 at 8:59 pm
If all you want is a verbatim copy as a base for your new stored procedure, you can do something like this:
Right-click on the stored procedure you want...
February 22, 2017 at 2:15 pm
Build out a piece of it, add some dummy data and write some queries. Lather, rinse repeat. That's the way most of us learned. If you make a mistake, your...
February 21, 2017 at 8:07 pm
Not near enough information to tell. Reducing the number of subreports by merging datasets, if possible.
You know you sound exactly like Wendy Elizabeth? Same expressions and speech patterns,...
February 21, 2017 at 12:20 pm
Could you post the CREATE TABLE and INSERT scripts to give us some sample data and then an example of the expected output? Answering your questions is just waaaay too...
February 20, 2017 at 9:59 pm
Viewing 15 posts - 1,591 through 1,605 (of 3,482 total)