Viewing 15 posts - 6,811 through 6,825 (of 8,753 total)
It is a separate download, SQL Server Data Tools for SQL Server 2014.
😎
October 11, 2014 at 12:09 pm
The SSDT 2014 is an additional download (last time I checked). To run the 2012 jobs/packages on the 2014 system there are two options, install the 2012 SSIS components on...
October 11, 2014 at 11:03 am
ramana3327 (10/11/2014)
The job is running in Sql 2012 succefully.
I migrated that job in to Sql 2014 instance that is running in seperate box.
The job is running the ssis package. That...
October 11, 2014 at 10:49 am
Jeff Moden (10/11/2014)
jacksonandrew321 (10/11/2014)
Thanks Eiriksson for ur reply. I wasn't familiar with this id update.
This kind of information is available in a tool called "Books Online". It's the "Help"...
October 11, 2014 at 10:21 am
Just for fun, here is a union alternative, certain that this is not the most efficient solution but it is simple to write and fun to play with, uses XML...
October 11, 2014 at 9:59 am
Eric M Russell (10/11/2014)
Eirikur Eiriksson (10/11/2014)
Worked for a national statistics office a while back, seen some "interesting" interpretations especially when politics get thrown in the works, very CREATIVE business:-P😎
There are...
October 11, 2014 at 9:01 am
ramana3327 (10/10/2014)
I installed sql 2014 enterprise edition. I didn't see any visual studio installation by the selection of Integration Service. Where we can develop the Packages?
I am giving the attachment...
October 11, 2014 at 8:03 am
Worked for a national statistics office a while back, seen some "interesting" interpretations especially when politics get thrown in the works, very CREATIVE business:-P
😎
October 11, 2014 at 7:39 am
cbrammer1219 (10/10/2014)
Will this be the same with SSIS 2010?
This is the essentially the same in SSIS 2012 (VS 2010)
😎
October 11, 2014 at 4:47 am
Quick thought, an identity property column cannot be updated, here is a demonstration and a workaround
😎
USE tempdb;
GO
SET NOCOUNT ON;
/* Drop if exists */
IF OBJECT_ID(N'dbo.TBL_IDENTITY') IS NOT NULL DROP TABLE dbo.TBL_IDENTITY;
/*...
October 11, 2014 at 4:29 am
Quick (semi) dynamic sql approach, simple and self explanatory
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.TBL_SAMPLE_DATA') IS NOT NULL DROP TABLE dbo.TBL_SAMPLE_DATA;
CREATE TABLE dbo.TBL_SAMPLE_DATA
(
Doc_ID VARCHAR(20) ...
October 11, 2014 at 2:05 am
GilaMonster (10/10/2014)
TomThomson (10/10/2014)
This isnt true of Windows Firewall with Advanced Security, which does allow specific addresses
Which the OP said he's using (albeit with a incorrect word, he said advanced settings...
October 10, 2014 at 1:42 pm
Koen Verbeeck (10/10/2014)
balasundar.sp (10/10/2014)
Koen, i am not very familiar with windowing functions. If you could give me the select query would be of great help..
You should see this as an...
October 10, 2014 at 2:42 am
Quick notes:
1) First of all this server needs patching, suggest you bring it up to SP3.
2) Read activity will not alter the data in any way, shape or form,...
October 10, 2014 at 2:29 am
Duplicate posting, respond to this thread instead.
😎
October 10, 2014 at 1:56 am
Viewing 15 posts - 6,811 through 6,825 (of 8,753 total)