Viewing 15 posts - 31 through 45 (of 74 total)
Good Question. I got it wrong. I did not see that the sp started with sp_.
In my company we follow the standard of not using sp as starting letter for...
June 16, 2010 at 7:47 pm
I have had the same issue before with indexed views and I could not never get it working. Looks like this is the limitatiion of indexed views (cannot use derived...
June 16, 2010 at 1:42 am
How are you testing the output in SSIS?
For starters Select top 1 (any 1 column) record instead and save it in a variable and see if the variable displays the...
June 8, 2010 at 5:27 pm
Use Expression and Constraint Option. This may help.
May 27, 2010 at 7:22 pm
Hi,
Hope this helps you.
DECLARE @Temp Table
(
FirstName VARCHAR(100)
)
INSERT INTO @Temp
SELECT '-Charlie'
UNION ALL
SELECT '*Charlie'
UNION ALL
SELECT '<Charlie'
UNION ALL
SELECT '<<Charlie'
UNION ALL
SELECT '<<<Charlie'
UNION ALL
SELECT '$Charlie'
UNION ALL
SELECT 'Charlie'
SELECT SUBSTRING(FirstName, PATINDEX('%[A-Z ,a-z]%' , FirstName), LEN(FirstName)) AS FirstName
FROM
@Temp
May 27, 2010 at 6:19 pm
yes I process the files and move it to an archive directory once I get the files in my working directory and process them.
The problem was with i should be...
February 17, 2010 at 11:19 pm
It might be possible that the file download on your source directory is not complete and at the same instance you are trying to move the file. 2 Processes are...
February 9, 2010 at 3:36 pm
Thanks for the reply. I could not interprete the code very well.
All I am looking for is a .NEt code that would be something similar to
FOR EACH subfolder...
February 9, 2010 at 3:05 pm
Hi,
I could not find a solution to define at the sp level but I have found a way to make it more generic
using database_default
So if there are collation issues because...
November 9, 2009 at 9:25 pm
I have figured that this is an issue only when we query from management studio.
It is not an issue when querying using the xquery for a table having an xml...
August 3, 2009 at 11:32 pm
I have figured that this is an issue only when we query from management studio.
It is not an issue when querying using the xquery for a table having an...
August 3, 2009 at 11:26 pm
As this is my first experience with XML I am finding it difficult and seeking the advice of the SQL & XML gurus. Can you please point me in the...
August 3, 2009 at 12:31 am
You have been very helpful all through my issues with parsing XML. But I have run into a problem that I have posted in the TSQL forum as well but...
August 2, 2009 at 6:30 pm
Thanks lutz,
You have been very helpful all through my issues with parsing XML. But I have run into a problem that I have posted in the TSQL forum as well...
August 2, 2009 at 6:24 pm
Thank You all, we figured out that it is not an issue with SSIS or the parameter but rather .NET and AXIS incompatability. Because even the code developed in .NET...
August 2, 2009 at 6:17 pm
Viewing 15 posts - 31 through 45 (of 74 total)