Viewing 15 posts - 46 through 60 (of 74 total)
APARNA (7/29/2009)
How to handle...
July 29, 2009 at 6:33 pm
I have tried an empty string as well as passing null. I am not getting the expected results back, everything comes up as empty tags.
How to handle an overload...
July 29, 2009 at 6:31 pm
For Anyone who would run into this situation. It was not the HTTPconnection Manager that was the issue but the WSDL file.
Their WSDL file had multiple virtual paths one...
July 29, 2009 at 5:26 pm
Thanks a Ton. The case statement proved very useful and the CROSS APPLY as well.
You are right I do not have namespaces as "abc.com", "abcd.com" , "abcde.com"
They are...
July 28, 2009 at 7:15 pm
As this is the first time I am working with XML with namespaces I am having a lot of issues parsing the data.
yet again I have run into problems with...
July 28, 2009 at 2:09 am
Thanks for your inputs. All these days I have used OPENXML without worrying about the performance implications.
July 27, 2009 at 6:12 pm
Thank You for the response. This was a sample XML I will try with the actual XML and check how it works. In the meantime with your code snippet I...
July 26, 2009 at 7:56 pm
Thanks for your response.
What are the advantages/disadvantages of CLR SPs as against the SSIS approach.AS I Am nt a .NET developer and purely a SQL developer it would be...
July 23, 2009 at 9:47 pm
Othere SSIS packages running under the sql seerver agent user access the same folder, So I am not sure if that was causing this issue, as i do not have...
May 28, 2009 at 12:28 am
I am not sure at what point it hangs but I guess it is probably at the stage of unzipiing the files, I am doing some tests to rule out...
May 27, 2009 at 11:58 pm
Sorry to be replying very late on this issue, thank you for your comments, As I had to quickly deliver the project I converted into a data set by pivoting...
May 27, 2009 at 7:45 pm
I still seem to be failing to get the XML tags in readable format. Your help is much appreciated
May 17, 2009 at 11:58 pm
When I query this against my database I get only 14997 from sys.columns, what If my empid is 15000? my seq generation fails in this scenario. Is there a...
April 15, 2009 at 11:21 pm
create a table valued function for the sequence number and select from the sequence generator by doing aleft join
CREATE FUNCTION [dbo].[fSequenceGenerator]
(
@StartSequence INT,
@EndSequence INT
)
RETURNS @OutPutTable TABLE
(
SequenceNumber INT
)
AS
BEGIN
WHILE @StartSequence < = @EndSequence
BEGIN
INSERT...
April 15, 2009 at 8:19 pm
Viewing 15 posts - 46 through 60 (of 74 total)