Viewing 15 posts - 10,951 through 10,965 (of 13,877 total)
And setting it as an Expression, not directly as a property.
January 11, 2012 at 2:14 pm
Anamika (1/9/2012)
i have a table with every minute data, if i want to select data for every 15 minute how can i do it.
for example
01/05/2012 5:40:00 PM 1
01/05/2012...
January 9, 2012 at 5:30 am
Evil Kraig F (1/6/2012)
January 6, 2012 at 11:47 am
This thread illustrates so very well the consequences of not forcing the OP to provide a proper set of requirements before answering ... talented people who could tackle the problem...
January 5, 2012 at 2:21 pm
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
Viewing 15 posts - 10,951 through 10,965 (of 13,877 total)