Viewing 15 posts - 751 through 765 (of 2,038 total)
Hi
Here you can find a great article by Gail about parameter sniffing:
http://sqlinthewild.co.za/index.php/2007/11/27/parameter-sniffing/
Greets
Flo
June 1, 2009 at 11:52 am
Could you please post your BCP command line call (without authentication)?
I just tried:
CREATE TABLE TestBcpOut (ColA VARCHAR(40), ColB INT)
CREATE TABLE TestBcpIn (ColA VARCHAR(20), ColB BIT)
INSERT INTO TestBcpOut
...
June 1, 2009 at 11:45 am
:w00t:
Sorry, I misread. You want to move from 2k5 to 2k? Forget my advice to use VARCHAR(MAX)/NVARCHAR(MAX)
To compare TEXT/NTEXT either use LIKE or a full-text index.
Greets
Flo
June 1, 2009 at 7:35 am
TEXT/NTEXT are marked as deprecated in SQL Server 2005. You should switch to VARCHAR(MAX)/NVARCHAR(MAX)
The provided error occurs when you try to use an "=" operation on a TEXT column or...
June 1, 2009 at 7:29 am
The error usually raises when you try to INSERT/UPDATE too large string or binary data into a table.
Please post the DDL of your procedure and the tables you UPDATE/INSERT inside...
May 30, 2009 at 10:14 am
Hi Sylvia
As John wrote; setup a dev-environment with smaller database(s).
Our production databases are between 5 and 500GB. Anyway, we have small development databases with about 500MB, QA databases with some...
May 30, 2009 at 8:35 am
RBarryYoung (5/28/2009)
Alvin Ramard (5/28/2009)
20 views per post doesn't sound that high to me. Don't we have 20 regular viewers in this thread?
True, except that we see anywhere form 20...
May 29, 2009 at 3:06 am
Bob Hovious (5/28/2009)
May 29, 2009 at 3:02 am
Alvin Ramard (5/28/2009)
GSquared (5/28/2009)
Alvin Ramard (5/28/2009)
Roy Ernest (5/28/2009)
I see that the Operation "Kill the Parrot" is on the road... 😀Release the cats!!
Ironic for a chipmunk to want cats on the...
May 28, 2009 at 9:47 am
I think the main difference between "BCP/BULK INSERT" and TVPs is the context to use it.
Since BCP requires special privileges it's not a feature for front-end applications. TVPs can be...
May 28, 2009 at 8:33 am
Great job, Solomon!
That's definitely a feature which was missing in my opinion.
I think BCP is a very powerful and nice tool but it is much less flexible. XML is a...
May 28, 2009 at 8:12 am
Since I have no idea about Oracle. Could you please explain the "commit/rollback features"? This makes it easier for T-SQL guys and gals 🙂
May 28, 2009 at 3:20 am
YEAH!!!
4995 bottles of beer on the wall, 4995 bottles of beer! Take 1 down pass it around, 4994 bottles of beer on the wall!!
😀
May 28, 2009 at 3:01 am
Barry gave you a very good hint. Take it!
May 27, 2009 at 2:33 pm
Viewing 15 posts - 751 through 765 (of 2,038 total)