Viewing 15 posts - 961 through 975 (of 1,132 total)
I am currently at a client that is using HP SANs and is using disk mirroring for DR. Mirroring is at the partition level. I performed a DR test...
October 30, 2005 at 7:16 am
Question One:
In table Lookup is column Date_Range really one column containing the characters
'01/01/2001 - 12/31/2001' ?
If so, you need to change the lookup table to have 2 columns, Date_Range_Low
and...
October 30, 2005 at 6:30 am
It is a SQL Server BUG that is fixed in Service Pack 4
FIX: A parallel query may return unexpected results
http://support.microsoft.com/default.aspx?scid=kb;en-us;814509
SYMPTOMS
When the following conditions are met, a parallel query may return...
October 29, 2005 at 8:53 am
Another thought:
Is table (TLog) supposed to be the status of the processing by the procedures ?
If so, try adding a isolation level hint to allows selecting of rows that are...
October 29, 2005 at 8:41 am
Let's simplify your problem with this test case. At the end, you will know how to determine blocks and locks that exists in the SQL Server instance.
Open SQL Query Analyzer...
October 29, 2005 at 8:35 am
If you do not allow emails from your SQL Servers, then how do you expect Quest's Foglight tool to notify you of problems ?
Have you seen the hardware requirements for...
October 28, 2005 at 6:38 pm
You can also get these symptons when autogrow is enabled, so that when the file needs to increase in size, everything stops.
See http://support.microsoft.com/kb/305635/EN-US/ for more details on your cause and...
October 28, 2005 at 4:10 pm
Great article Don.
As the insufficiencies of XML became known, another solution has come forward.
"The Resource Description Framework (RDF), which integrates a variety of applications using XML for syntax and Universal...
October 28, 2005 at 2:46 pm
If you have a MS exchange server in the same domain as your SQL Servers, then each job can send a status email or a page to a distribution list.
For...
October 28, 2005 at 2:19 pm
Please be aware that implimenting this requirement via triggers is a very bad idea because if any of the remote databases are not available, the local trigger will not allow...
October 28, 2005 at 2:18 pm
I had previously been a IBM Mainframer using Cobol, CICS, IDMS and DB2 when I finished a project and was given a new assignment. Turned out to be Unix...
October 28, 2005 at 12:39 pm
I managed to get my local copy of SQL server to reproduce your problem.
Try the following in SQL Query Analyzer
DECLARE @datevar datetime
SET @datevar = '01/02/2005'
SELECT @datevar
The output should be 2005-01-02...
October 28, 2005 at 12:09 pm
So you want the condition of null = '' to be true?
I strongly recommend that you fix the data and not try to do this with ISNULL = ISNULL
See below...
October 28, 2005 at 11:44 am
Just made a few adjustments that are bracketed by "--CCF-START"
and "--CCF-END"
CREATE PROCEDURE ecomm_addNewCus(
@contact char(40), --First Name & Last Name
@cus_name char(40), -- Company Name
@addr_1 char(40),
@addr_2 char(40),
@city char(26),
@state char(4),
@zip char(10),
@country char(20),
@phone_no char(20),
@phone_ext...
October 28, 2005 at 11:15 am
"No Downtime" is not possible since only one of the servers can be up and any one time with the same name, the DNS and server rename are required...
October 28, 2005 at 10:24 am
Viewing 15 posts - 961 through 975 (of 1,132 total)