Viewing 15 posts - 46 through 60 (of 65 total)
hi adi,
Tks for your reply.
But how can i do that inside this condition?
a.dta_alteracao>b.dta_alteracao
tks,
Pedro
March 30, 2009 at 4:41 am
No, order is not important.
I just need something, that i send a value and then , this something (maybe a sp) populates some fileds (not all the column) of a...
March 24, 2009 at 3:14 am
I now, executed only the folowing comand:
execute ('BULK INSERT bulk_1
FROM '''.....1.txt''
WITH
(
FIRSTROW =2,
...
March 23, 2009 at 10:20 am
Hi,
I have tried to do the dinamyc SQL Statement, like this:
Create proc BULK_INSERT_DATA(@PATH varchar(500))
as
declare @SQLStatement as varchar(200)
set nocount on
truncate table bulk_1
SET @SQLStatement = 'BULK INSERT...
March 23, 2009 at 6:05 am
Thank you very mutch for all your help.
I undestud every thing, but i have some doughts in some words that you used (the meaning)
What is a staging table?
What is wipe?...
March 20, 2009 at 10:46 am
Why is truncate better than delete?
Is it faster? why?
This table is just for temporary use.
I delete de data first and then insert the data trought the bulk insert. Then i...
March 20, 2009 at 9:33 am
Yes, tks very mutch.
I only have one dought about this post.
If i make a:
delete from BULK_table
BULK INSERT BULK_table
FROM 'C:\..........'
WITH
...
March 20, 2009 at 9:16 am
The situation was resolved, saving the txt file to unicode.
Tks for your help.
Other question:
What about tablock? i have been reading about this option, but i don't undestand it very well.
My...
March 19, 2009 at 8:32 am
Hi , tks for reply.
I can not change the file to uni-code., because i receive the txt file from other persons.
Isn't there any other work around?
I really need to import...
March 19, 2009 at 2:30 am
tks once again for help.
But in this case i think you did not understud my question , i don't need to always start from 3.
I need to start from the...
March 6, 2009 at 10:10 am
tks old hand for reply so quick.
i will trie and will report to you the result
will this code start the counter from number 3? since number 1 and number 2...
March 6, 2009 at 9:43 am
Forgot to tell.
My user database is in simple recovery model (i know the risk of having that way). so in this case will the databse be havy?
March 6, 2009 at 4:36 am
ok.
But i would like to create the tables directly in my database, so this can not be #tables (this tables are created in tempdb), that's why i asked if there...
March 6, 2009 at 4:15 am
Thank you very mutch for reply master Paul Randal.
I'm sorry , about talking about a program to fix this problem.
This is because i have not mutch time, and i fill...
March 4, 2009 at 1:43 am
Thank you very mutch for all your help.
I'm sorry the post was not in the right place.
I read the link of master Paul Randal.
March 4, 2009 at 1:33 am
Viewing 15 posts - 46 through 60 (of 65 total)