Viewing 12 posts - 1 through 12 (of 12 total)
SQL Kiwi (1/26/2012)
CREATE TABLE #Example
(
BrandId integer NOT NULL,
ProductId integer NOT NULL,
...
January 27, 2012 at 12:40 am
I would appreciate if someone could help me out here or else let me know if none of you dont understand or dont know what I am talking about.
May 16, 2011 at 12:51 pm
yes format of each file is similar, now a I am able to configure xml task but I am stuck at configuring xml source how I am going to pass...
May 16, 2011 at 9:00 am
ok, let me explain from the scratch what I am trying to do is I have multiple XML files, I need to bulk insert each one into a table in...
May 16, 2011 at 7:40 am
Lowell (4/18/2011)
are you trying to force stocktb.[identitycolumn?] to be exactly the same as the productid from the other table,...
April 18, 2011 at 8:01 am
Ninja's_RGR'us (4/18/2011)
Do you have replication turned on?
no I am not doing any replication here, I am trying to just insert the data from one table to another and the identity...
April 18, 2011 at 7:58 am
Lowell (4/18/2011)
are you trying to force stocktb.[identitycolumn?] to be exactly the same as the productid from the other table,...
April 18, 2011 at 7:57 am
ColdCoffee (3/31/2011)
declare @WSUrid numeric
declare @WSUrnam varchar (100)
declare @WSPrice1 varchar (100)
declare @WSPrice2 numeric
declare @WholesalePrice...
March 31, 2011 at 8:15 pm
toddasd (3/31/2011)
declare @WSUrid numeric
Why is this ID field a numeric? You have decimal IDs?
set @WSPrice1 = 'Select ISNULL(' + @WSUrnam + ',0) from dbo.productstb where productid =...
March 31, 2011 at 8:13 pm
WayneS (3/31/2011)
ptlbiren (3/31/2011)
Msg 8115, Level 16, State 6, Line 14
Arithmetic overflow error converting varchar to data type numeric.
And also correction in above update statement it...
March 31, 2011 at 8:12 pm
I AM GETTING FOLLOWING BELOW ERROR
Msg 8115, Level 16, State 6, Line 14
Arithmetic overflow error converting varchar to data type numeric.
And also correction in above update statement it is
Update...
March 31, 2011 at 10:30 am
because in .csv file the columns containing values such as '0008' takes as '8' so i want to avoid using .csv format.
February 5, 2011 at 5:53 pm
Viewing 12 posts - 1 through 12 (of 12 total)