Viewing 15 posts - 1 through 15 (of 17 total)
I made some minor modifications to see if the SP's and UDF's would work with nvarchar data. Specifically, I modified the SP's to use nvarchar instead of varchar.
I then modified...
August 23, 2005 at 12:57 pm
One more question. I noticed that the stored procedures define the variables as varchar. Is there any reason this wouldn't work with NVARCHAR? (double-byte characters)? I read something about blowfish...
August 23, 2005 at 11:37 am
Great package. Thanks!
I followed the steps: copied the dlls, and ran the add_xp.sql (which finished successfully).
But when I try to call the blowfish encrytion, I get the error:
ODBC: Msg 0, Level...
August 23, 2005 at 10:57 am
Use the utf-8 encoding for all pages.
March 9, 2005 at 12:14 pm
Yep, that is definitly a way to fix the problem. MS changed the install defaults with MSDE Rlease A. Previous versions allowed other machines to access the MSDE by default....
January 27, 2005 at 4:23 pm
It could also be related to a clustered index. It looks like you have nearly 6 million records, and you're deleting roughly 200 thousand records. Depending on the clustered index,...
December 30, 2004 at 8:48 am
Have you setup a relationship between the tables?
December 21, 2004 at 8:18 am
Is the ID auto generated by SQLServer? If the ID is not being generated automatically by the system, then are the ID's being inserted in a fairly sequencial order? If...
December 14, 2004 at 8:15 am
You can just install Enterprise Manager without the dev version of SQLServer database. I believe that you can install Enterprise Manager on as many machines as you want.
I have read...
November 2, 2004 at 8:10 am
I know exactly what you're talking about. I found the solution about a year ago; I believe it consisted of doing a registry edit. Anyway, since then, I cannot find...
September 24, 2004 at 12:38 pm
Yep, that's why I have the REPLACE function within a WHILE loop.
September 21, 2004 at 12:45 pm
Remi:
I suspect it's simply an "HTML" thing. HTML ignores whitespace (well, at least more than 1 whitespace). You could enter "Hello World" with 100 spaces in between the 2 words,...
September 21, 2004 at 11:09 am
I would backup the DB's on the old machine, and then restore them on the new machine.
August 24, 2004 at 8:00 am
BCP should handle it. But I would suggest:
1) drop indexes on the table receiving the data
2) make sure your transaction log is large enough. OR, if you don't want the...
August 13, 2004 at 1:07 pm
The identity value gets assigned BY THE DB AT INSERT TIME; not by you prior to the insert. When you insert data into a table, do not list the identity column when...
August 12, 2004 at 9:12 am
Viewing 15 posts - 1 through 15 (of 17 total)