Viewing 15 posts - 46 through 60 (of 62 total)
Hi Jeff,
Sorry for the late response. I was off for the thanks giving weekend. You didnt post your solution here.
November 29, 2010 at 9:26 am
This is the table and sample data (Attached below)
my out put shoud be something like this.
My function does the splitting of the address field .
Thank you in advance
November 24, 2010 at 7:38 am
This is my function
CREATE FUNCTION [dbo].[ParseAddress]
(
@Address VARCHAR(8000) ,
@Delimiter...
November 24, 2010 at 7:35 am
I dont want to join the function and the table ...i want to pass data in the column from the table as a variable to the function
November 23, 2010 at 4:05 pm
sample data
----------------------------------------------------
String
----------------------------------------------------
122 campbell ave., west haven, Arizona 00000-0000
248 mac arthur blvd., irving, New York 11111-1111
123 xyzs, abcd, New Jersy 22222-2222
----------------------------------------------------
November 22, 2010 at 2:56 pm
There is one more added complexity , in some recordds the state has for example
Arizona
New Jersy
instead of just their abbreviation
November 22, 2010 at 2:53 pm
Hi,
Thank you for your reply
The source data is consistent. the only problem is there is no ',' in the string between the state field and the zip and the zip...
November 22, 2010 at 2:27 pm
While performing check in i'm getting a warning "Internal error in changeset comments policy
October 25, 2010 at 10:57 am
so u dont want to insert that record from client B rite?
October 8, 2010 at 1:54 pm
Hi,
This might help you.
USE AdventureWorks;
GO
SELECT name, create_date, modify_date
FROM sys.objects
WHERE type = 'P'
AND name = '<user defined stored procedure>'
GO
September 20, 2010 at 1:12 pm
Viewing 15 posts - 46 through 60 (of 62 total)