Viewing 15 posts - 46 through 60 (of 224 total)
I was able to find the package in Execute Package Utility.
April 12, 2016 at 12:40 pm
bdkdavid (3/24/2016)
Is there a cause for this behavior?
I do not understand the source of the problem.
Can anyone shed some light on the subject?
The unicode character that looks like a hyphen...
March 24, 2016 at 3:17 pm
The hyphen might be a non-breaking hyphen. Here's an example of how it behaves:
declare @test-2 table (a nvarchar(10));
insert @test-2 values ('abc-def'), ('abc' + nchar(0x02010) + 'def')
select...
March 24, 2016 at 2:18 pm
David McKinney (3/23/2016)
CONSTRAINT ck_xxx CHECK ('' not in (c1,c2,c3,c4,c5))
Would you kindly check and let me know if...
March 23, 2016 at 10:59 am
Change: WHERE row_num = MAX(row_num)
To: WHERE row_num = 1
This is a quick guess based on what you've posted, without any testing. But I think MAX (row_num) will be returning the...
February 22, 2016 at 1:46 pm
Apparently VS 2013 (SSDT 2014) still uses VS 2012 for scripts by design. So it looks like the script didn't migrate, but in reality, no migration is needed. More details...
February 18, 2016 at 1:37 pm
I'm having the same issue upgrading a package from SSIS 2012 to SSIS 2014. What exactly is the "totally manual" upgrade process? Re-create the script component? Edit the XML? I...
February 18, 2016 at 1:08 pm
Several threads on the Internet suggest disabling Check for publisher's certificate revocation in the Internet Options, Advanced control panel.
February 18, 2016 at 10:05 am
The Messages pane gives some insight. Without GO statements, this is one SQL batch. The connect commands are processed in order before any of the SQL is executed.
Connecting to server1\instance1...
Disconnecting...
October 27, 2015 at 7:23 am
Thank you to those who responded.
So it looks like the two select queries do not have to be in the same transaction. The first select statement is reading from...
October 26, 2015 at 8:05 am
Just to explain that horrible SQL script in m previous, something on the network is sniffing SQL and won't let me send it out (HTTP reset). That one finally made...
October 9, 2015 at 1:00 pm
CREATETABLE outertable (a INT);
CREATETABLE innertable (b INT);
INSERToutertable VALUES (1), (2);
INSERTinnertable VALUES (10), (22), (30), (45);
SELECTCOUNT(*) AS outer_join_outer_table_has_rows
FROM (SELECT* FROM innertable LEFT JOIN outertable ON 1 = 1) AS t;
SELECTCOUNT(*) AS...
October 9, 2015 at 12:57 pm
Cross join and outer join with no predicate are not the same. If there are no rows in one of the tables, cross join returns no rows.
October 9, 2015 at 12:53 pm
Thanks, I will use the first one!
I keep forgetting about CROSS APPLY and OUTER APPLY and try to solve everything with joins...
September 23, 2015 at 1:19 pm
kiwood (9/9/2015)
September 9, 2015 at 9:39 am
Viewing 15 posts - 46 through 60 (of 224 total)