Viewing 15 posts - 31 through 45 (of 113 total)
Yes it works if all fields in myTable are varchar. As soon as I make them int, datetime etc, I get type mismatch error when I bulkinsert from the text...
February 4, 2008 at 9:01 am
Mom tought me some French but I cannot write
February 1, 2008 at 6:08 pm
Doesn't work. How to insert into myTable (id int primary key not null, name varchar(50), date datetime )
id | name | date
from the file C:\myFile.txt :
100| yann | 02/01/2008
200|...
February 1, 2008 at 6:06 pm
Thanks! It works.
Are you French? I am Russian 😛
February 1, 2008 at 2:36 pm
"On Grant's scale of tolerability, I'm currently falling somewhere between staphilococcus and streptococcus"
Oh dear.. Matt, you made my day. I was laughing for several minutes. OK, back to my bug's...
January 30, 2008 at 9:24 am
Life was so easy when I was doing open source:P
Long leave LAMP ..
By the way guys, you talk about how DBAs are under appreciated. You don't know what's a developer's...
January 30, 2008 at 9:17 am
"You just have to remove the developer edition before installing DBPro."
This was exactly my question. I don't want to remove anything. I am both. I need both. I am a...
January 30, 2008 at 9:02 am
No, my company is not licensed for team suit. Maybe they will buy it, maybe not. Our tech services provided me with Visual Studio Team Edition for Developers so I...
January 29, 2008 at 8:35 am
"Besides load-testing the proc (set up 1000 connections on your computer and run them all at once, 100 times each), which would reveal any hidden problem in the proc, I...
December 5, 2007 at 9:39 am
Doug,
seems like changes in the stored procedure did help. Thank you very much, you are very smart!
-V
December 3, 2007 at 7:33 am
Hi Doug,
this was created without errors (for 2005)
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE TEST
AS
BEGIN
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;
BEGIN TRANSACTION;
SELECT getdate();
COMMIT TRANSACTION;
END
November 29, 2007 at 2:42 pm
"On the performance side: response.redirect causes a postback to the browser resulting in 2 requests back to the web server from the client, while server.transfer advances to the next ASPX...
November 28, 2007 at 5:02 pm
Doug,
here's your SP;
SP InsertNewOrder:
Begin
set transaction isolation level serializable
-- Store identity in @MyKey during the tran and return from the variable
Declare @MyKey int
-- The real problem was a lack of transactions,...
November 28, 2007 at 4:08 pm
OK. I still try to pinpoint the problem, is it vb code, application server settings, SQL server settings, scope_identity problem. I read a lot of info regarding session loss etc,...
November 28, 2007 at 3:44 pm
This is what I got after running it on my local server on my machine:
Scope from IoI trigger [1]
Out of luck
Does it mean scope_identity doesn't work?
November 28, 2007 at 8:22 am
Viewing 15 posts - 31 through 45 (of 113 total)