Viewing 15 posts - 3,061 through 3,075 (of 3,606 total)
How do you mean Steve?
Take it down in 10Mb increments?
September 2, 2004 at 1:39 am
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...
September 2, 2004 at 1:37 am
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...
August 29, 2004 at 4:41 pm
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...
August 13, 2004 at 1:50 am
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...
August 13, 2004 at 1:28 am
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...
August 10, 2004 at 12:37 pm
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"
August 9, 2004 at 4:12 am
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...
August 9, 2004 at 1:39 am
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...
August 9, 2004 at 1:23 am
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...
August 6, 2004 at 3:25 pm
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...
August 6, 2004 at 8:30 am
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...
August 6, 2004 at 8:21 am
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.
August 6, 2004 at 7:34 am
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
August 6, 2004 at 3:44 am
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...
August 6, 2004 at 2:19 am
Viewing 15 posts - 3,061 through 3,075 (of 3,606 total)