Viewing 15 posts - 1 through 15 (of 440 total)
vaibhav.a (4/20/2009)
plz help me
thank...
April 20, 2009 at 8:46 am
You may want to check out the below link
http://www.sqlservercentral.com/articles/Miscellaneous/3174/
April 17, 2009 at 10:34 am
table design is purely based on the requirement.
Are there any other requirements around these emails? i.e if there is any change to the Body for a Line of Business do...
April 17, 2009 at 10:32 am
Hi
Please take some time to put a good requirement/question 🙁
April 17, 2009 at 10:28 am
Hi
I would prefer to go with SQL Server 2008 instead of 2005. 2008 has somany featurers.
But it would be great if you could list out what are the difficulties you...
April 17, 2009 at 10:26 am
Hi
You need to specify the datasize of the NVARCHAR2 datatype.
CREATE TABLE "tblZipCodes_Sales_2009" (
"sZipCode" NVARCHAR2(100),
"SalesRegion" NVARCHAR2(100)
)
April 17, 2009 at 10:20 am
aakcse (4/13/2009)
Yes I am using my own database and not system created,I am doing it in the same way, one by one table each time.
using DTS, very time consuming.
How much...
April 17, 2009 at 10:15 am
I would go with PL/SQL, it is simple to manage...
April 17, 2009 at 10:08 am
it should be same as calling any other stored procedure, only difference is interms of Driver.
Sample String:
Provider=IBMDADB2.DB2COPY1;Data Source=TM_REPORTING_00004;Persist Security Info=True;Password=123456;User ID=rfuser
April 17, 2009 at 10:03 am
hi
Check out the below link(which does the debug using VS)
April 17, 2009 at 9:59 am
Also please post some description about your output columns like ex: 'Sum251'...
April 17, 2009 at 9:52 am
I am curios to know why do you want to store the "Oder by" in table.
April 17, 2009 at 9:45 am
check out the below link, This will give you the function to reverse a string with out using REVERSE.
I always prefer to use existing functions, if they are...
April 17, 2009 at 9:09 am
Hi
You can use below script:
DECLARE @t TABLE (split_col VARCHAR(100))
INSERT INTO @t VALUES ('3:16')
SELECT split_col,
SUBSTRING(split_col, 1, CHARINDEX(':', split_col)) First_val,
SUBSTRING(split_col, CHARINDEX(':', split_col) + 1, 100) Second_val
FROM @t
April 17, 2009 at 8:27 am
Viewing 15 posts - 1 through 15 (of 440 total)