Viewing 15 posts - 10,951 through 10,965 (of 13,872 total)
My comment relates to this sentence:
1) to fail the package if the file is not available, then execute the package again at a later time, or 2) we can...
January 5, 2012 at 2:34 am
Your selection logic is flawed. You should read Gail's article, but I think that this would be closer to what you need:
select * from test_data
where Eid = (case when...
January 5, 2012 at 2:23 am
You are responding to a thread which is 2 years old!
January 4, 2012 at 12:43 pm
SKYBVI (1/4/2012)
I am using:-
update table
set column name =....
except (sub query giving other COLUMN VALUES as output)
I dont want the sub query resulted...
January 4, 2012 at 9:06 am
How will the query know that the first result should be excluded the second time it runs? It's no longer random at that point, unless you put the selected names...
December 29, 2011 at 9:45 am
xRafo (12/29/2011)
The table have around 2000 records.
I've been testing the above query but sometimes give 2 times return the same value,
I need not repeat random...
December 29, 2011 at 9:39 am
CHANDRASHEKHAR SINGH (12/29/2011)
Building a package is a standard Practice. When you deploye your package from Dev environment to Production environement, you should build your package, which will craete the .msi...
December 29, 2011 at 5:43 am
CHANDRASHEKHAR SINGH (12/29/2011)
Hi,If the file is in the same folder, you can give the extension as *.* while configuring your Foreach Loop container.
Regards,
Chandrashekhar
How does this help in determining whether the...
December 29, 2011 at 5:35 am
Not all millisecond values can be stored by a SQL Server datetime column and perhaps this is causing issues?
For example
select CAST('2011-12-21 14:29:54:304' as datetime)
will return 2011-12-21 14:29:54.303 - showing that...
December 28, 2011 at 3:31 am
ankita.patel01 81294 (12/27/2011)
December 27, 2011 at 2:27 pm
ankita.patel01 81294 (12/27/2011)
I need to write something in SSIS that will say if my percentages does not equal 100 % then add the total, and whatever the difference is +/-...
December 27, 2011 at 2:19 pm
Capt. Sigerson (12/21/2011)
December 21, 2011 at 2:04 pm
I don't think that the solution proposed is necessarily the best one, as it depends heavily on you being able to derive the name of the file.
What I would do...
December 21, 2011 at 1:34 pm
I particularly like this sentence:
... which means the rows flow in almost as fast as they flow out.
presumably creating some sort of data vacuum which may implode the pipeline?
😀
December 21, 2011 at 10:27 am
Slightly unusual syntax. Try this
SELECT a.TransactionNumber ,
a.StoreID ,
a.Transaction_Date ,
...
December 21, 2011 at 8:39 am
Viewing 15 posts - 10,951 through 10,965 (of 13,872 total)