Viewing 15 posts - 166 through 180 (of 332 total)
Good point Jeff - not many users of MySQL, for example, know or care that it is Open Sauce, never mind ever look at the sauce code. Having said that,...
November 20, 2008 at 3:28 am
I think you need to read up on TCP/IP, DNS and the ping command. As a quick summary to point you in the right direction:
ping uses ICMP to send packets;...
November 13, 2008 at 6:50 am
Unfortunately, the vast majority of SPAM is just plain boring or stupid or both. I wish I did receive creative SPAM, but I can't recall a single one. Some phishing...
November 7, 2008 at 2:50 am
Simple way to verify you can talk with the local SMTP mailserver is to use telnet from a CMD window:
telnet (mailserver) 25
You will either get a 220 success,...
October 16, 2008 at 9:18 am
The simplest way to run a particular script in each and every database is:
exec sp_MSForEachDB 'use ?;exec sp_spaceused;'
However, this would run the script for all databases, not just your mirrored...
October 14, 2008 at 9:08 am
Then I suggest you identify the source of the time-out problem. It will affect your direct DB connection in just the same way as the file copy.
I also think a...
October 3, 2008 at 2:46 am
What strikes me, whenever I get a quote for new server hardware, is how insignificant the price of the CPU(s) and Memory is, compared to the whole package. Once I...
October 3, 2008 at 2:38 am
Thanks Gail, nicely summarised.
October 2, 2008 at 8:48 am
Depends on where the applications are located. But you are essentially correct - during a failover, the SQL Server stops on one node and starts on a new node. This...
October 2, 2008 at 6:27 am
Gail touched on this, but it is a very important point - with DB Mirroring, the application must support mirroring. Most commonly, by using an "SQL Native Client" odbc driver.
With...
October 2, 2008 at 5:59 am
how about using the Coldfusion function to copy the file from the remote HTTP Server onto the local server? Then import the file using the normal SSIS package. That way...
October 2, 2008 at 5:46 am
I suppose the same argument can be posed for a Disaster Recovery Site - how do you know that it really works, without actually doing a full failover? For most...
October 1, 2008 at 4:44 am
Ideally, you want to test that the particular port the Endpoint is mapped to, is available from the other server. Easiest way to test is to telnet to the port:
telnet...
September 17, 2008 at 1:57 am
Alternatively, you could dump the whole recordset into an array, and then work with the array. This is usually my preferred method. Just use:
RS.GetRows
You can then use UBound to calculate...
September 11, 2008 at 6:56 am
Thanks Gail, sorry I completely didn't realise that shrink database was one of the options! Absolutely agree, don't include it.
September 9, 2008 at 8:47 am
Viewing 15 posts - 166 through 180 (of 332 total)