Viewing 15 posts - 1 through 15 (of 17 total)
Create table #temp
(value int)
Insert into #temp
select 2
Union all
select 2
union all
select 0
March 12, 2013 at 5:40 pm
it worked..sorry I made a mistake in my syntax.. Thanks!!
October 24, 2012 at 9:25 am
Thanks, I got error as
Query (1, 36) Parser: The syntax for '"[Date].[Date hierarchy].[Date].&["' is incorrect.
October 24, 2012 at 7:44 am
Cadavre thanks for your solution.. The solution you provided solved some of the conflicts that I'm getting now.. Thanks guys!!!
June 21, 2012 at 6:15 am
got solution. i added one more column in the flat source this eliminated the pipe.. now everything is importing without pipe at end
September 24, 2010 at 2:49 pm
can you provide the solution, basically the incoming field has
0.0
25.0
and i want to replace it with NULL
...
September 20, 2010 at 9:11 am
yes i have addrid
Addrid Addr date
...
September 17, 2010 at 2:54 pm
Thanks for your help i solved the issue..
here im entering dates manaully and i dont want to do that.. is there any solution to solve it?
August 27, 2010 at 1:00 pm
First, your error message is wrong for your new code. You should be getting 2 errors, not just the 2003 error. And it should be 2009, not 2003, based on...
August 27, 2010 at 11:48 am
im sorry for my pervious posts here is what i tried
CREATE TABLE [dbo].[tblsample](
[EmailAddrID] [int] NOT NULL,
[SourceCode] [varchar](4) NOT NULL,
[RegisterTimestamp] [varchar](8) NOT NULL
)
--Data
Insert into tblsample
values('1023027','A','2009-12')
Insert into tblsample
values('1023027','A','2009-12')
Insert into tblsample
values('10230','B','2009-11')
Insert into...
August 27, 2010 at 11:23 am
It doesn't help basically i want it to be in.. wether im doing mistake some where in the script?
...
August 27, 2010 at 9:48 am
still getting Syntax error as
Msg 102, Level 15, State 1, Line 20
Incorrect syntax near '2003'.
August 27, 2010 at 8:59 am
i tried with below query i getting syntax error as
Msg 1033, Level 15, State 1, Line 19
The ORDER BY clause is invalid in views, inline functions, derived tables, subqueries, and...
August 27, 2010 at 7:38 am
i tired in so many ways and im getting error, in my table there are 277 records with different dates like and in nset month i may have 300 records...
August 26, 2010 at 3:43 pm
Viewing 15 posts - 1 through 15 (of 17 total)