Viewing 4 posts - 1 through 4 (of 4 total)
leave less space if you do not use,
or you can use Property-Layout to specific the page size.
November 27, 2007 at 2:39 am
sorry wrong typing ,
try this.
with cte as (
Select top 10 *
From dbo.localtable)
select * from cte
INTo linkedserver.mydatabase.dbo.testtable
October 12, 2007 at 3:52 am
Select s.*
INTo linkedserver.mydatabase.dbo.testtable
From
(Select top 10 *
From dbo.localtable) as s
this may help you
I will give another example use cte,becase we discuse sql2005
with ...
October 10, 2007 at 8:42 pm
I will give you a example again
I think use this ,you can use little C# or VB code to complete your task.
select logdate, prodgroup ,...
October 10, 2007 at 8:36 pm
Viewing 4 posts - 1 through 4 (of 4 total)