Viewing 11 posts - 1 through 11 (of 11 total)
when i try the syntax exec sp_rename 'table.columnnameold', 'columnnamenew' it executes in ssms
but in tfs it throws an error: VwA has no reference object or have an ambigous reference
January 9, 2013 at 11:40 pm
Tried it as well.
CREATE TABLE T1
(
CreateDate DateTime2 not null
)
GO
INSERT INTO T1 (createdate)
VALUES ('2012-03-09 12:34:45:567')
GO
throws an error: cannot convert datetime to string
December 13, 2012 at 12:49 pm
Thanks,
Its working perfect. But i could see that if we add unique to the column in the table itself, then only the script is working fine.. Otherwise it throws error....
December 12, 2012 at 3:16 pm
Forgot to mention EDId is the primary key in dbo.ED table
December 12, 2012 at 1:33 pm
Awesome thats perfect. Thankyou very much foryour help.
SELECT table1.column4,
table2.column5
FROM table1
...
October 14, 2011 at 10:32 am
Thanks for the reply,
But actually i tried this way also and its not working.
The thing is table2.column3=02 is the condition applied after performing join where as table2.column3(+)=02 is the condition...
October 14, 2011 at 9:45 am
Viewing 11 posts - 1 through 11 (of 11 total)