Viewing 15 posts - 9,691 through 9,705 (of 13,874 total)
As Elliott suggests, this is really a T-SQL performance question.
Unless you are suggesting that the proc runs more quickly when executed in SSMS than in SSIS?
If this is the case,...
August 5, 2013 at 12:49 am
ssurekha2000 (8/3/2013)
sample data attachedi hope this is the proper for you to proceed
select from table1
where exists (select 1 from table1 where col1 = 'd') and exists (select 1 from...
August 3, 2013 at 4:42 am
Your first post mentions one table. Now you are mentioning many - how was I supposed to know this?
I made a mistake in trying to help you, because you did...
August 3, 2013 at 2:53 am
Nothing is displayed the way you have tried because you are saying:
'Give me all rows where col1 is d and col1 is i'
Col1 cannot simultaneously contain both values - hence...
August 3, 2013 at 2:05 am
ssurekha2000 (8/3/2013)
field1 will have values as 'd' and 'i'
if the field1 of table has both the values then only the data shld e displayed
but...
August 3, 2013 at 2:03 am
JoNTSQLSrv (8/2/2013)
Phil Parkin (8/2/2013)
I see.You can probably get quite close through the use of PATINDEX and diligent use of wildcards. Have you tried this?
PATINDEX is just retrieving the index...
August 2, 2013 at 5:12 am
I see.
You can probably get quite close through the use of PATINDEX and diligent use of wildcards. Have you tried this?
August 2, 2013 at 3:55 am
kevin_nikolai (8/2/2013)
For SQL Reports stored procedures you most definitely want to use "SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED".--
If you can guarantee that the database is and will be in a...
August 2, 2013 at 3:34 am
Presumably you are using some sort of front-end application (Winform/Web) to get this info from the user. This validation should be done there and not by SQL Server.
August 2, 2013 at 3:30 am
August 2, 2013 at 1:46 am
Ryan1 (7/31/2013)
August 2, 2013 at 12:40 am
Or put this query in your task.
If your source is SQL Server, this is what I would do - use a query for your data source and include this...
August 2, 2013 at 12:34 am
I second Sean's comment.
The contents of the page linked to by Durai Samuel should not be relied on as they contain multiple incorrect statements relating to the nature and...
August 2, 2013 at 12:24 am
Smash125 (7/31/2013)
please this is not job site please do not send. u r wasting people's time
July 31, 2013 at 3:05 am
My assumption was that we were talking about a single script, consisting of multiple batches. In which case a local temp table would do
I see! I agree with your comments...
July 31, 2013 at 2:16 am
Viewing 15 posts - 9,691 through 9,705 (of 13,874 total)