Viewing 15 posts - 61 through 75 (of 475 total)
SQLRNNR (8/3/2014)
george sibbald (8/3/2014)
me too, but who's complaining? 🙂Me!! Take my points back. I protest!! :-D:hehe:;-)
Good question, but I think I'll keep mine:Whistling::-)
August 3, 2014 at 2:05 pm
Mark Harley (7/23/2014)
July 23, 2014 at 1:33 pm
Mark Harley (7/17/2014)
July 17, 2014 at 1:14 pm
I think I remember reading somewhere that the memory grant for a n/varchar(max) is 4000 bytes.
Paul White has this article which may also be helpful
July 16, 2014 at 2:01 pm
Yeah the documentation isn't that great. I spent a fair amount of time trying to change oracle sqlloader scripts to BCP with limited success. In the end I...
July 14, 2014 at 1:01 pm
Also, before I forget I ran it with this
BULK
INSERT #TmpStList
FROM 'c:\Temp\TxtFile.txt'
WITH (
FORMATFILE = 'c:\Temp\formatFile.fmt'
...
July 13, 2014 at 9:12 pm
Sorry it appears that slash n's are stripped from the forum. Put a \ n after the \ r for line 5 and try that. Without spaces of...
July 13, 2014 at 9:05 pm
Hi
Try this as a format file
9.0
5
1 SQLCHAR 0 1 ...
July 13, 2014 at 8:31 pm
KGJ-Dev (7/10/2014)
Hi Micky,I tried that way an hour before and not sure the procedure called twice and the insert statement did twice inserting the records.
any suggestion...
Do you mean that if...
July 10, 2014 at 3:40 pm
To build on mister magoo's suggestion you could try
CREATE PROCEDURE [dbo].[TestInsert](@IdEmployee int, @Name varchar(20))
AS
BEGIN
DECLARE @o TABLE (IdEmployee INT ,Name VARCHAR(20));
INSERT INTO Sandbox.dbo.Emp(IdEmployee,Name)
OUTPUT inserted.IdEmployee, inserted.Name
...
July 10, 2014 at 2:36 pm
I couldn't agree more, it would be nice to clean up some of these things.
Personally I would leave REPLACE alone and add a PATREPLACE.
I would also...
July 9, 2014 at 10:08 pm
Hi
This should help you
http://blog.strictly-software.com/2011/11/error-copying-tables-importing-or.html
July 5, 2014 at 8:04 pm
Viewing 15 posts - 61 through 75 (of 475 total)