Viewing 15 posts - 4,921 through 4,935 (of 11,678 total)
sathiyan00 (9/6/2013)
i want the product which is there in both the brand not just in one
Right. That wasn't entirely clear from your original post.
I guess they're about the same performance...
September 6, 2013 at 3:41 am
This article explains how you can do it:
http://bennyaustin.wordpress.com/2011/02/04/ssis-name-of-errorcolumn/
September 6, 2013 at 3:29 am
lianvh 89542 (9/6/2013)
Unfortunately I cannot do that due to NDA .
You can always make up a table with sample data with the same structure as the actual table.
You need...
September 6, 2013 at 3:20 am
The SSIS package needs to be stored and executed somewhere right? Create a SQL Server Agent job on that machine and start the job from the Unix box.
September 6, 2013 at 3:18 am
I would simple schedule the package with a SQL Server Agent job (use the SSIS jobstep) and use a proxy.
September 6, 2013 at 1:04 am
Why not just do the following?
select product from tablea WHERE brand_id IN (1,2);
September 6, 2013 at 1:02 am
What if you try with the command line?
Install SQL Server 2012 from the Command Prompt
Setup.exe /Action=Uninstall /FEATURES=SQL,AS,RS,IS,Tools /INSTANCENAME=MSSQLSERVER
September 6, 2013 at 12:58 am
Here you go:
DECLARE @AsonDate DATETIME = '2013-08-11';
SELECT CASE WHEN DAY(@AsonDate) < 7
THEN DATEADD(d,6,DATEADD(d,-(DAY(DATEADD(m,-1,@AsonDate))-1),DATEADD(m,-1,@AsonDate)))
ELSE DATEADD(d,6,DATEADD(d,-(DAY(@AsonDate) - 1),@AsonDate))
END;
September 6, 2013 at 12:53 am
Interesting question. I haven't used MDS yet, so definately learned something.
Curious why SSIS is in the title though. At first sight it doesn't have to do anything with the MDS...
September 6, 2013 at 12:45 am
Tim Mitchell (9/5/2013)
September 5, 2013 at 2:59 pm
manibad (9/5/2013)
Hi,We use Informatica for reporting the data and we are able to do it in Informatica. But I am unable to do it in SQL.
Formatting should be done in...
September 5, 2013 at 1:46 pm
pmscorca (9/5/2013)
However, it should be useful to know any...
September 5, 2013 at 12:48 pm
How do you report?
If you use Reporting Services, this article explains number formatting:
September 5, 2013 at 12:46 pm
pmscorca (9/5/2013)
SSIS 2012 runs on a db server with SQL Server 2012 64-bit and Windows Server 2012 64-bit: however do I need to install also...
September 5, 2013 at 4:57 am
On what criteria do you select those 4 rows?
September 5, 2013 at 4:42 am
Viewing 15 posts - 4,921 through 4,935 (of 11,678 total)