Viewing 15 posts - 31 through 45 (of 71 total)
This may happen if the server is re-booted and the windows performance counter service is running. Turn off the windows perfomance counters, then re-start SQL Server, and then start the...
August 18, 2005 at 11:13 am
Check the SQL Server Network Utility and make certain that Force Protocol Encryption is UNCHECKED.
August 17, 2005 at 5:26 pm
select Facility,District,Division,EntryType,Series,Totals, (Cast(cast(Totals as numeric(6,4))/(Select cast(Sum(Totals) as numeric(6,4)) from PunchTrend b) as numeric (5,4)) * 100.000) as Percentage
from PunchTrend a
Order by Facility,District,Division,EntryType,Series
July 22, 2005 at 3:17 pm
You may want to check the users defined in the MODEL database as well, just in the event the windows group is defined as users there.
July 15, 2005 at 2:36 pm
Perhaps the client machine will need to set up an alias for the server machine in the client's SQL Server Client Network Utility.
July 7, 2005 at 11:22 am
Here is another link which may be helpful. It uses DTS ActiveX task to script other DTS packages:
July 6, 2005 at 2:28 pm
Here is a link to scriptpkg.exe usage:
http://support.microsoft.com/default.aspx?scid=kb;en-us;239454
July 5, 2005 at 5:19 pm
Use <database to query>
GO
Select * from INFORMATION_SCHEMA.VIEWS where
patindex('%<table to identify>%', view_definition) > 0
June 27, 2005 at 1:38 pm
CREATE procedure sp_runpkg @t varchar(100)
as
declare @s-2 nvarchar(200)
set @s-2 = 'master.dbo.xp_cmdshell ''dtsrun /S<YourServerName> /E /N' + @t + ''''
exec master..sp_executesql @s-2
GO
June 14, 2005 at 3:30 pm
I believe I solved my own problem. Thus,
ALTER TABLE MYTABLE
Add MemberSeqNbr int NULL
update mytable set memberseqnbr = (select count(*) + 1 from mytable m1 where mytable.membernbr = m1.membernbr and mytable.startdate...
May 9, 2005 at 2:00 pm
Collation compatibility may be an issue. Make sure you have the compatibility you want by checking the appropriate box in the linked server --> Properties -->Server Options applet tab.
April 22, 2005 at 3:12 pm
Viewing 15 posts - 31 through 45 (of 71 total)