Viewing 15 posts - 1,606 through 1,620 (of 3,500 total)
I find that I give an author some leeway if English isn't his first language. (Ferrari & Russo's stuff is a prime example - their English is quirky, but understandable)....
March 16, 2017 at 4:39 pm
Can't you do this? If you use TOP 100 PERCENT, you can use ORDER BY.
CREATE VIEW vwFirstInstances
AS
SELECT * FROM (
SELECT TOP 100 PERCENT...
March 15, 2017 at 10:31 pm
"having negative values should be treated as zero or ignored" - you would have to either deal with that in your stored procedure or create a calculated field to do...
March 14, 2017 at 11:06 pm
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
Viewing 15 posts - 1,606 through 1,620 (of 3,500 total)