Viewing 15 posts - 496 through 510 (of 1,233 total)
Start with a data flow task. Open this >
If you are joining on tables already in a SQL Server database then you will simply use that same SQL statement...
September 16, 2016 at 12:34 pm
So for the Monday, you want Friday listed,
Same for Sunday.
Would the code not actually read as
(1 indicates a Monday)
iif(Weekday(Parameters!TopLineDate.Value,1) = 1,
dateadd("d", -3, Parameters!TopLineDate.Value),
...
September 16, 2016 at 12:28 pm
I am interested in seeing what the columns actually are. Can you post this? I suspect you are not satisfying 3rd normal form in your database tables.
September 16, 2016 at 11:54 am
Hugo Kornelis (9/16/2016)
MMartin1 (9/15/2016)
Just wanted to bring up a point of inquiry : the view sys.dm_db_index_usage_stats would not satisfy if any table has no indeces I imagine.
A logical...
September 16, 2016 at 11:09 am
This is just to illustrate the concept outside of SSRS
Create table #temp (
colA tinyint,
colB tinyint,
colC tinyint,
colD tinyint,
colE tinyint,
colF tinyint,
colG tinyint,
colH tinyint
)
/* inssert some test data into our table */
insert...
September 15, 2016 at 7:42 pm
Hi, Sorry I dont quite understand the question . You want to know how to alter a view to add two new existing columns? Can you post what you have...
September 15, 2016 at 7:29 pm
Just wanted to bring up a point of inquiry : the view sys.dm_db_index_usage_stats would not satisfy if any table has no indeces I imagine.
I am not sure...
September 15, 2016 at 4:24 pm
We don't use AS in the table aliases, though, because that's usually pretty clear.
I find it clearer if AS is used consistently when aliasing anywhere. If I can apply...
September 15, 2016 at 11:06 am
Just quick and dirty , I can get the offset as a integer with
SELECT
cast(
left(
right (
cast(SYSDATETIMEOFFSET() as varchar(40))
,6),3) as int)
Again , quick and dirty.
September 14, 2016 at 12:35 pm
I am in the pacific time zone. Currently , according the time zones of the world , I am eight time zones away from Greenwhich time. My area implements day...
September 14, 2016 at 12:28 pm
You make a very good point Drew. I dont think strict rules can override common sense in accounting for every situation. Expect exceptions to the rules. A mantra I see...
September 13, 2016 at 4:24 pm
I just did a quick refresher on replication and did not see anything about renaming tables. I got the impression you have to drop and recreate the article and then...
September 13, 2016 at 1:31 pm
Is the replication still working otherwise? Are the two servers on the same domain?
September 13, 2016 at 1:20 pm
The way I interpret what the OP is asking for is that the customer can visit a page multiple times before a order is placed. An accumulating snapshot fact table...
September 13, 2016 at 1:01 pm
Thanks Steve, yeah that is what I thought.
The page link was posted by Thomas on this thread. I am copying it here. https://msdn.microsoft.com/en-us/library/ms143550.aspx
September 13, 2016 at 12:25 pm
Viewing 15 posts - 496 through 510 (of 1,233 total)