Viewing 15 posts - 16 through 30 (of 97 total)
If the table structure matches you can use UNION which will remove duplicates also .
select * from table1
UNION
select * from table2
October 6, 2015 at 3:22 pm
Just to start with and to make sure your login actually works with your SQL . Try to connect to your server
LOCAL-IP.\SQLEXPRESS with SQL login as local-sql-user and password=p@ssw0rd
Now...
August 22, 2015 at 10:22 pm
This is the version of SQL I have installed
Microsoft SQL Server 2014 - 12.0.4100.1 (X64)
Apr 20 2015 17:29:27
Copyright (c)...
June 3, 2015 at 10:02 am
This issue has been fixed . It was related to version of SQL server connectivity tools installed in the box .
1. I tried changing the version manually in XML...
May 14, 2015 at 10:59 am
Tried the steps , its still failing with same error . I have tried with one package out of five package . Driving me nuts . I can open the...
May 13, 2015 at 9:30 am
Check this http://www.sqlrepair.org/ you may able to repair . But I doubt if you can . I have not tried myself , but you can give...
April 29, 2015 at 11:24 am
The first thing to looks for is execution plan , which tells alot about how optimizer is processing this . I would say please paste the Exec plan...
March 25, 2015 at 11:16 am
I have figured the solution for this issue .
It was related to how table creation script was formatted . It is working fine now via SSIS
Correct Way
CREATE...
March 24, 2015 at 4:08 pm
Database ID and Name is always same in exception . What I am missing here for SSIS to run fine ..
---------------------------------------------------------------------------------------------------- ERROR :: 615 :: Could not find...
March 24, 2015 at 9:27 am
Jeff ,
I changed number to nvarchar to match data type of name column from sys.databases . It is still failing when I call from SSIS . :crazy:
SP2 is...
March 24, 2015 at 9:25 am
This is SP1.
CREATE PROCEDURE [dbo].[SP1]
AS
/*Create Table variable to hold the data that needs to be processed*/
DECLARE @databases TABLE (
id...
March 23, 2015 at 10:16 pm
Yes , you can do that . You just need to initialize one subscription which won't impact other existing subscription
February 28, 2015 at 6:55 am
Something similar and close to question was discussed in past .
http://www.sqlservercentral.com/Forums/Topic1316138-146-1.aspx
February 27, 2015 at 8:35 am
It looks like you are trying to create subscription using your "Create publication custom script" and running it on Subscription database where it is failing which it will .
February 27, 2015 at 8:09 am
Probably something like this .
select top 100 a.name, b.name,sc.DATA_TYPE from sys.views a inner join sys.columns b
on a.object_id = b.object_id
INNER JOIN INFORMATION_SCHEMA.COLUMNS SC ON b.name = sc.COLumn_name
where a.name like '%Case_Times%'
February 23, 2015 at 8:30 am
Viewing 15 posts - 16 through 30 (of 97 total)