Forum Replies Created

Viewing 15 posts - 1 through 15 (of 17 total)

  • RE: Free Encryption

    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...

  • RE: Free Encryption

    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...

  • RE: Free Encryption

    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...

  • RE: Storing Data in SQL from an ASP Form

    Use the utf-8 encoding for all pages.

  • RE: MSDE 2000 Fail to register

    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....

  • RE: Deletes take forever

    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,...

  • RE: Tuning required on tables

    Have you setup a relationship between the tables?

  • RE: Insert tuning

    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...

  • RE: best way to interact with MSDE

    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...

  • RE: MSDE database backups

    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...

  • RE: Remove multiple whitespace from a string

    Yep, that's why I have the REPLACE function within a WHILE loop.

  • RE: Remove multiple whitespace from a string

    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,...

  • RE: Moving SQL 2000 sp2 on Win 2K --> sp3 on Win 2003

    I would backup the DB's on the old machine, and then restore them on the new machine.

  • RE: bcp limitations

    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...

  • RE: Not Going to use IDENTITY columns!!!

    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...

Viewing 15 posts - 1 through 15 (of 17 total)