Viewing 15 posts - 2,611 through 2,625 (of 3,489 total)
Don't want to do your homework for you, so I'll ask a question instead.
What's the conventional way of breaking up a many-to-many relationship?
March 18, 2015 at 8:05 pm
Good point, Luis. Posting a question like this in an integration services group just made me wonder. Hence my question.
March 18, 2015 at 5:24 pm
Okay, what version of SQL Server are you using, because this has zero to do with SSIS? This works in 2012, and I think in 2008.
This is a windowing...
March 18, 2015 at 4:25 pm
wrap the IIF in a test for records? Maybe you can short-circuit it that way.
March 18, 2015 at 2:48 pm
Freeze Top Row in Excel.
March 17, 2015 at 9:06 am
Not enough inserts to recreate the table data you're working on.
You REALLY need to read Jeff's article on how to get good help.
Please read this article.
March 16, 2015 at 11:38 pm
Can you post the Create Table and INSERT statements to reproduce this? (Figured you would have figured that out already. You've been here for a while!)
March 16, 2015 at 1:04 am
Did you create the stored procedure by executing the code to create it? Something like...
CREATE PROCEDURE myProcName
@param1 VARCHAR(20)
, @param2 INT = 10
AS
SELECT field1, field2, field3
FROM MyTable
WHERE field1 = @param1
AND...
March 15, 2015 at 10:17 pm
I have two tables one lists sites names while the other lists the completed tasks with the date of completion for the sites (the same site could have completed the...
March 14, 2015 at 2:56 am
Looks to me like you're missing something. Is there no "Account" table somewhere? If you think about a bank account, at its simplest, it's something like:
CREATE TABLE Account(
...
March 13, 2015 at 7:40 pm
#1: one way is to use a value list of the possible values. If you create a dataset of the values you can just use it.
#2. You can use...
March 12, 2015 at 5:47 pm
Maybe you should have explained that to begin with.
Bite me.
March 12, 2015 at 1:12 pm
Why not just filter the dataset?
March 12, 2015 at 9:48 am
Where do you get the data from?
You could transpose it in SSIS or Excel (that's what I used) and then it would be easy to use in SSRS. Then...
March 10, 2015 at 10:14 pm
duplicate post! oops!
Okay, I think I got it...
Here's the stored procedure (I'm sure Dwain will school me on doing it this way, but I was just trying to get it...
March 10, 2015 at 8:44 pm
Viewing 15 posts - 2,611 through 2,625 (of 3,489 total)