Viewing 15 posts - 1 through 15 (of 18 total)
you can use SQL Server Import and Export Wizard. Then write a query to specify the Data transfer (Which columns should be added).
May 11, 2009 at 2:59 am
BEGIN TRAN
INSERT INTO Table2
SELECT*
FROMTable1
DELETE
FROMTable1
COMMIT
GO
This code will do the trick...
But one question mate.... Why don't you just develop Form (Application), where the user can add records?
May 6, 2009 at 1:56 am
John Marsh (5/5/2009)
I don’t believe there is inbuilt functionality to script out the Insert statements for all the data in a Single Table, but there are third party tools which...
May 5, 2009 at 12:43 am
You can use this code TEMPORARILY
declare @abc table
(
Applicant char(20),
Skills1 char (20),
Skills2 char (20),
Skills3 char (20),
Skills4 char (20),
Skills5 char (20),
Skills6 char (20)
)
insert into @abc
select 'Jones',...
April 29, 2009 at 5:41 am
Hi jewel,
Have you tried browsing it manually?
or tried typing the instance manually?
April 29, 2009 at 3:53 am
GSquared (4/28/2009)
declare @Time int;
select @Time = 123757;
select dateadd(second, @Time%100, dateadd(minute, @Time%10000/100, dateadd(hour, @Time/10000, 0)))
Just...
April 29, 2009 at 12:22 am
it might be better if you could give sample table and data where we can work with...
but seeing the sample data you provided, it seems that there is no normal...
April 22, 2009 at 10:57 pm
You might want to add sample data we can work with so we can clearly understand what you want..
April 22, 2009 at 5:43 am
vaibhav.a (4/20/2009)
plz help me
thank...
April 20, 2009 at 3:33 am
vaibhav.a (4/20/2009)
Please help me,
I am having having excel file and i want to transfer data from different excel files into multiple tables..........
First I want to know is this possible...
April 20, 2009 at 2:25 am
jose_anisha (4/19/2009)
April 20, 2009 at 2:20 am
sward (4/19/2009)
I am running a distinct query that was working fine. as soon as i added a new field(ilr.unique_ilr_id,)to be displayed in the reults the distinct part stops working and...
April 20, 2009 at 2:05 am
jaimepremy (4/18/2009)
I'm having a hard time rounding avg results upwards (underlying dataype is int).
For example if the sum of 3 rows = 8, then avg should be 3 since...
April 20, 2009 at 12:07 am
arun.sas (4/14/2009)
hayzer (4/14/2009)
hayzer (4/14/2009)
suppose you have the table 'tblNames' with a column 'name'
select left(name,charindex('-', name)-1)
from tblNames union all
select left(name,charindex('/', name)-1)
from tblNames
havent tried it... i'll try this...
April 15, 2009 at 2:46 am
hayzer (4/14/2009)
suppose you have the table 'tblNames' with a column 'name'
select left(name,charindex('-', name)-1)
from tblNames union all
select left(name,charindex('/', name)-1)
from tblNames
havent tried it... i'll try this code at...
April 14, 2009 at 10:32 pm
Viewing 15 posts - 1 through 15 (of 18 total)