Viewing 15 posts - 91 through 105 (of 269 total)
You can add a Lookup transformation to your dataflow. Lookup the incoming rows in the database based on whatever makes them unique. Only insert to the database those...
July 15, 2014 at 7:50 am
Note: The date datatype can hold dates from Jan 1 of year 1 thru Dec 31, 9999. The datetime datatype can only hold dates from Jan 1, 1753 thru...
July 15, 2014 at 6:28 am
Gary Varga (7/13/2014)
Comments posted to this topic are about the item <A HREF="/questions/powershell/112950/">What is the true value?</A>
This is a little OT but here goes! I'm learning F# and among...
July 14, 2014 at 6:44 am
maybe you should post screenshots of what you want and what you get. There may be a way to make it work. Note however, that SSRS to Excel...
July 7, 2014 at 8:49 am
be sure your source and target tables are indexed on the key column
July 3, 2014 at 7:34 am
This worked for me:
declare @TargetTable table ([Key] char(8), SecurityID int)
declare @SourceTable table ([Key] char(8), SecurityID int)
insert into @TargetTable([Key]) values
('KKL43431'),
('KKLFK992'),
('KKL11011')
insert into @SourceTable([Key], SecurityID) values
('KKL43431',401),
('KKL43431',987),
('KKLFK992',533),
('KKL11011',123)
update t
set t.SecurityID = s.SecurityID
from @TargetTable t
join @SourceTable...
July 3, 2014 at 7:14 am
I took your sample code and ran it in a test database.
Then, I build a test report, defined a datasource for the test database and a dataset definition using it....
July 2, 2014 at 6:00 am
In spite of declaring that PKs and CIs are not the same, the author seems to conflate the two. Pretty much every table should have a CI -- hopefully...
June 30, 2014 at 6:14 am
OK -- I see why this is happening. When I created the config file, SSIS did not export the SQL login password, even though I told it to do...
June 26, 2014 at 11:05 am
Solved it:
Problem was the file connector thought it had the extra columns. I deleted them in the connection manager.
June 25, 2014 at 10:35 am
I think we need some help to understand what kind of help you need.
June 19, 2014 at 9:27 am
Have you tried plink from the makers of PuTTY? http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
You should be able to run the script on the linux machine like:
plink.exe -ssh -pw pass -noagent user@linux-server /path/to/your/script/make-live
You can schedule...
June 19, 2014 at 9:19 am
Bobby Russell (6/18/2014)
June 18, 2014 at 9:34 am
Koen Verbeeck (6/18/2014)
The answer is incorrect.The question clearly states that the databases are on site. Thus, by the process of elimination, the corruption answer is the only one left.
Wrong! ...
June 18, 2014 at 8:17 am
My results were different. e.g.
USE MASTER
GO
SELECT SUBSTRING('NY', is_read_only + 1, 1)
, USER_NAME()
...
June 11, 2014 at 9:21 am
Viewing 15 posts - 91 through 105 (of 269 total)