Viewing 15 posts - 1,006 through 1,020 (of 1,132 total)
You are doing fine and there is a klugy work-around for mapping global variables that is at http://www.sqldts.com/default.aspx?234.
Basically, the steps are:
1. Have a dummy sql statement that is on one...
October 22, 2005 at 7:29 pm
Did you apply the MDAC Service Pack to the web servers ?
October 22, 2005 at 12:15 pm
Is the client Windows 2003 or XP ?
There are a couple of reasons:
For Windows XP, Windows Firewall is enabled on the computer. By default, Windows Firewall blocks the MSDTC program.
See...
October 22, 2005 at 9:07 am
Do not use an "AFTER INSERT" trigger, but try using an "INSTEAD OF INSERT" trigger
that inserts into the same table.
CREATE TRIGGER [trgTest]
ON [dbo].[tblMyLog]
FOR INSTEAD OF INSERT
AS
set nocount...
October 22, 2005 at 8:53 am
If you run a google search versus microsoft.com, you will find 2 fixes for the problem.
Product: MDAC 2.7
Solution: Apply SP1
URL: htp://support.microsoft.com/kb/322144/EN-US/
Product: SQL Server 2000
Solution: Apply SP1
October 22, 2005 at 8:43 am
To comply with Sarabannes-Oxley, no one, including the DBAs, are allowed to use generic accounts such as "sa". Instead, each DBA connects using an separate account. To prevent anyone...
October 21, 2005 at 3:25 pm
Does the SQL Server service account have rights on the remote server ?
Also, since you are using the adminstrative share (c$), the account will need be a member of the...
October 21, 2005 at 2:18 pm
The SQL Server could be configured to only allow Window Accounts to connect and not allow SQL Server accounts.
Are you using the MSDE edition ? If so, integrated security...
October 20, 2005 at 8:06 pm
Task Manager does not provide accurate memory usage information for AWE. Specificly, the memory indicated for sqlservr.exe is never correct.
You must use the Performance Monitor to retrieve information on...
October 20, 2005 at 7:47 pm
Here are the benchmark numbers from running the SQLIOStress utility on 2 servers where one is RAID-5 and the other is RAID-1.
The results are seperated by !
DB File Placement!Data and...
October 20, 2005 at 3:54 pm
Here is quote from a major bank's new security access policy:
"No member(s) of any staff or consulting group involved in the development of information systems can request access to...
October 20, 2005 at 2:36 pm
Am I missing something ?
Doesn't this SQL do the job ?
select *
, convert(varchar,convert(datetime,Date_Lst_Iss),103)
from dbo.Part_Mast
where Part_Num LIKE '258095GB%'
order by Part_Num
October 19, 2005 at 11:58 am
The physical attributes for tempdb are stored in master.dbo.sysaltfiles.
At startup, tempdb is created from model and then the physical attributes are applied such as changing the recovery mode to simple,...
October 18, 2005 at 10:17 am
Were you aware that when you change a DTS package, the prior versions are still retained ?
Under some circumstances ( that I have yet to determine), an older version...
October 17, 2005 at 12:30 pm
Note that with a 24 hour clock, to determine if a specific time is with a range that spans midnight, such as 9:00 PM to 6:00 AM, two checks are...
October 17, 2005 at 12:23 pm
Viewing 15 posts - 1,006 through 1,020 (of 1,132 total)