Viewing 15 posts - 2,911 through 2,925 (of 3,396 total)
sounds like a WiseOwl tutorial... they're all on YouTube
May 26, 2014 at 5:08 pm
I know this is closed, but it's better to pass the parameter to the stored procedure and filter there. Otherwise, you can send a lot of data to the...
May 24, 2014 at 7:20 pm
Woudn't you specify that in your sort list?
Sort by:
column1
column2
SortParameter1
etc?
Then SortParameter1 could be a value list of the remaining column names. (Just build a function to determine the sort order...
May 24, 2014 at 7:43 am
You filter the second (cascaded) parameter based on the first parameter.
Given @param1 and @param2, the value list for @param2 is usually
SELECT somecolumn
FROM someTable
WHERE someField = @param1;
May 21, 2014 at 4:40 pm
Are you trying to point at something with an arrow or underline something? Underlining is easy, but drawing arrows on something that will change shape might be tricky.
May 21, 2014 at 2:14 pm
Nothing doing:
-- set up table
use tempdb;
GO
CREATE TABLE t1 (
PO_Num INT PRIMARY KEY,
DaysToTravel INT,
DaysInWhse INT);
GO
-- add some sample data for folks to play with
INSERT INTO t1(PO_Num, DaysToTravel, DaysInWhse) VALUES
(1,10,20),
(2,5,30),
(3,7,40);
-- now...
May 20, 2014 at 9:25 pm
non-deterministic - "A property of a computation which may have more than one result."
So functions like NEWID() and GETDATE() are non-deterministic because they do not return the same result every...
May 19, 2014 at 8:36 pm
What was it? (Sorry, that's just how I learn!)
May 18, 2014 at 2:26 pm
SSRS will use the same sort order as the query/stored procedure you base the report on, so if you have the data sorted in your stored procedure, you're all set.
If...
May 16, 2014 at 11:32 pm
COALESCE maybe? You might need to use a windowing function to get the previous row (LAG?) Something like
COALESCE(MyColumn, LAG(...))
May 15, 2014 at 9:22 pm
Even if they do, so what? Just push a new front end out. Or is each user modifying his own front end? In that case, you might...
May 15, 2014 at 9:18 pm
Maybe I'm missing something, because my results are different from yours... here's my SQL and results:
insert into Readings(MeterID, ReadingDate, Reading)
SELECT 4 ,'10/17/2013 12:00',5.1709 UNION ALL
SELECT 4,'10/17/2013 12:15',5.5319 UNION ALL
SELECT 4,'11/17/2013...
May 14, 2014 at 11:26 pm
One thing I would do when loading the data is to timestamp the new records when inserting them.
DECLARE @TimeNow DATE = GETDATE(); -- sets the value of the variable to...
May 14, 2014 at 10:02 pm
Why do you need to do that? Why not just index the ClientName/ID in the table, and then use a stored procedure to filter the data?
For example:
CREATE PROC usp_CompanyRecords
...
May 14, 2014 at 11:53 am
Viewing 15 posts - 2,911 through 2,925 (of 3,396 total)