Viewing 15 posts - 31 through 45 (of 74 total)
December 20, 2010 at 12:02 am
probably u may expect a query like as following
insert into table2(col1,col2) select col1,col2 from table1 where condition
December 19, 2010 at 11:52 pm
hi
Given information is not enough to provide answer.. can u pls explain your issue with sample?
December 19, 2010 at 11:49 pm
s jeff.. i realized that.. i made it in presentation layer
December 19, 2010 at 11:24 pm
Hi
I am using Sql server 2k5 Express edition. is it possible there?
December 14, 2010 at 6:49 am
same doubt i had few days ago... people suggested me to check cursor_status to close and deallocate the cursor..
November 27, 2010 at 2:37 am
try this
SELECT MAX( RowNumber ) FROM
(
SELECT
ROW_NUMBER() OVER (ORDER BY MSG_DTM_LASTSTATUSTIME DESC) as RowNumber
FROM
Message_MSG msg with(nolock)
) A
November 23, 2010 at 5:10 am
but i have 20 columns in table1...Should i add 20 columns in table2 too?
November 23, 2010 at 5:07 am
thanks Chris... still i have a doubt.. i explained that in following code. i changed tables added columns in fact...
if object_id('tempdb..#table1') IS NOT NULL DROP TABLE #table1;
if object_id('tempdb..#table2') IS...
November 23, 2010 at 4:34 am
Thanks a lot for valuable ideas.. but what i am trying to do is
just like the following code...
from the select statement few values wil be inserted in one table and...
November 22, 2010 at 10:27 pm
Chris.. the links in ur signature u want me to check out?
November 22, 2010 at 9:18 am
create table #table1 (col1 int,col2 varchar(30))
insert into #table1 values (1,'martin')
insert into #table1 values (2,'tom')
insert into #table1 values (3,'schrof')
create table #table2(t_col1 int identity(1,1),t_col2 int)
create table #table3 (f_col1 int identity(1,1),f_col2 varchar(30),f_col3 int)
insert...
November 22, 2010 at 8:03 am
Viewing 15 posts - 31 through 45 (of 74 total)
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy