Viewing 15 posts - 6,556 through 6,570 (of 13,877 total)
sappidi06 (10/10/2016)
1)Collection> Enumerator Configuration: Folder: C:\Users\ssappidi\Desktop\Uploads and 2)Foreach Loop Editor>Expressions> Directory @[User::FolderName]
Also i have declared a FolderName Variable and gave the...
October 10, 2016 at 12:40 pm
rsampson (10/10/2016)
My process deletes files from archive after x days.
I hit the loop and get the same complaint, but I've previously
moved 1 file to...
October 10, 2016 at 12:16 pm
sappidi06 (10/10/2016)
I am trying to load an excel file and update it on the database inside the for each loop in SSIS. When i execute the For each loop container...
October 10, 2016 at 11:49 am
mcfarlandparkway (10/10/2016)
I mean source is...
October 10, 2016 at 8:37 am
Wolfmeister (10/10/2016)
October 10, 2016 at 8:07 am
ramireddyjava (10/10/2016)
We are trying to implement global variables in SSIS. for example from development to UAT to production, the database details will be changed so that we need to...
October 10, 2016 at 7:47 am
Lynn Pettis (10/7/2016)
You can also try this:
select
mc.custid,
mc.companyname
from
sales.MyCustomers mc
where
not exists(select 1 from sales.MyOrders mo where mo.custid = mc.custid);
Looks rather similar to my suggestion!...
October 7, 2016 at 2:23 pm
Try this version too:
SELECT custid
, companyname
FROM sales.MyCustomers c
WHERE NOT EXISTS ( SELECT 1
...
October 7, 2016 at 1:47 pm
Run them both in the same batch and check the relative costs.
October 7, 2016 at 1:44 pm
Here's an alternative, though I'm not sure it's any better:
IF OBJECT_ID('tempdb..#Person', 'U') IS NOT NULL
DROP TABLE #Person;
CREATE TABLE #Person
(
PersonID INT
...
October 7, 2016 at 10:46 am
Grant Fritchey (10/7/2016)
October 7, 2016 at 8:44 am
niall5098 (10/7/2016)
HI There,it looks like sql but is actually text
XML, not SQL.
XML is text, but in structured format, with start and end 'tags' around data items.
October 7, 2016 at 8:32 am
niall5098 (10/7/2016)
the column contain a string of data. within that string I will see the following entries:
<new_pmetd_refno>4110</new_pmetd_refno> ...
October 7, 2016 at 8:00 am
niall5098 (10/7/2016)
as the heading suggests I am trying to query a text based audit for specific values then compare them values. For example the column should contain and new_ref_no...
October 7, 2016 at 5:43 am
Jeffery Williams (10/6/2016)
October 6, 2016 at 4:28 pm
Viewing 15 posts - 6,556 through 6,570 (of 13,877 total)