Forum Replies Created

Viewing 15 posts - 3,061 through 3,075 (of 3,606 total)

  • RE: Shrink File status

    How do you mean Steve?

    Take it down in 10Mb increments?

  • RE: Design Advice Wanted - Date/Time

    I would tend to keep date and time together.  If you can get away with a SMALLDATETIME field then do so.

    If you do decide to store date and time separate...

  • RE: MYSQL vs SQL 2000

    MySQL is a database that is very good at pumping out information at a very fast rate of knots especially for web-site deployment.

    I have some concerns with its ability to...

  • RE: Relication V Log Shipping

    I have the same situation as you with a staging database for CMS publication and a live database for CMS presentation.

    I set up transactional push replication.

    Firstly, I only want one...

  • RE: copy production DB

    If your production and development DBs are on the same box then simply restore the last production backup over the top of the development DB.

    If you want to delete a...

  • RE: Stored Procedures under .net

    I haven't got my head around the full ADO.NET feature set yet but from what I have seen .NET provides a great deal of freedom to get away with bad...

  • RE: Storing uers passwords and Hashinh

    The particular routine was in-built into the CMS but here is something similar that we used as the base to a VB solution

    Attribute VB_Name = "mEncryption"

  • RE: Storing uers passwords and Hashinh

    I do something similar using a web CMS and a built in DES encryption algorithm.

    A consideration is whether or not you need to recover the passwords in a human readable...

  • RE: Connectivity to SQL Server via VPN terribly slow...

    The idea of allowing Access to act as the front end to a SQL Server database gives me the horrors.

    Firstly, Access causes horrendous locking and contention issues.

    Secondly, Access is a...

  • RE: Microsoft Access as a Front End for SQL Server 2000

    In the bad old days of Access 97 and earlier there used to be horrendous problems with MS Access causing locking issues in the SQL Server database.

    Has this been fixed...

  • RE: Connectivity to SQL Server via VPN terribly slow...

    Download to Access

    OK now it becomes clear.  I have experienced what you are going through.

    Firstly, I had two Access databases, template and live.  Template...

  • RE: Batching or index problem

    I probably wouldn't try joining a 22million row table to a 40 million row table directly.

    I would probably insert a few thousand q12004.batch,q12004.phone records into a temporary table then do...

  • RE: Moving System Databases

    I sincerely doubt it!

    I believe that the MASTER database is specific to the server on which it originates.

    I could be wrong, but I don't think I am.

  • RE: CASE syntax

    CASE WHEN LEN(CAST((@iRunNr AS VARCHAR(10)))<6

     THEN REPLICATE('0',6-LEN(CAST((@iRunNr AS VARCHAR(10))))+cast((@iRunNr as varchar(10))

     ELSE cast((@iRunNr as varchar(10))

    end

  • RE: Connectivity to SQL Server via VPN terribly slow...

    In EM from the tools, options menu switch off server state polling or put it to a much larger interval.

    My understanding of VPN software is very limited but I gather...

Viewing 15 posts - 3,061 through 3,075 (of 3,606 total)