Viewing 15 posts - 46 through 60 (of 74 total)
There is really no visible server difference between SP3a and SP3; the main difference for us here was that 2 of the clients DLLs are very different in how prepared...
August 31, 2005 at 1:48 pm
August 9, 2005 at 4:58 pm
Hey it works in SQL2005; another reason to use it.
CREATE TYPE dbo.CustomerCode4 FROM varchar(11) NOT NULL ;
GO
DECLARE @CUST_TABLE TABLE ( RecID INT IDENTITY ( 1, 1 ), CustCode dbo.CustomerCode4 )
SELECT...
August 6, 2005 at 7:47 pm
I would add a line below
SELECT @lowBal = amount FROM unitValues u, plans p WHERE firstUnitValue = u.ID AND itemID = '4050-9910-0000' AND planID = (SELECT billingPlan FROM signupInfo...
August 6, 2005 at 7:20 pm
I would try changing the following if on SQL2000; not sure if it exists on SQL 7.0
SET @clientID = @@identity
to
SET @clientID = SCOPE_IDENTITY( )
Tim S
August 6, 2005 at 7:12 pm
We use the SQL Diff Tool from http://www.adeptsql.com/ compares SQL objects like tables & store procedures.
And are thinking of getting the DBGhost Pro Tools from http://www.innovartis.co.uk
Builds...
July 27, 2005 at 11:44 am
He updated his script here
http://www.database-security.info/Tools/SQLServer/spAuditPasswords.txt
Tim S
July 22, 2005 at 4:17 pm
No it is not wise;
Look at your linkservers one of them has a login defined on it.
Tim S
July 22, 2005 at 4:05 pm
Also, check out http://www.chriskempster.com/articles/debugdtcissues.htm
Also try turning off if you can't connect to see if security issue TurnOffRpcSecurity
July 20, 2005 at 9:30 am
May want to read http://support.microsoft.com/default.aspx?scid=kb;en-us;224071
Tim S
July 19, 2005 at 12:09 pm
FROM BOL 2000
sp_resetstatus turns off the suspect flag on a database. This procedure updates the mode and status columns of the named database in sysdatabases. The SQL Server error log...
July 11, 2005 at 7:21 pm
Yes a SQL 7.0 Client will talk to an SQL 2000 DB.
May have problems if server is NOT the default instance; if not default instance you need MDAC 2.6 and...
June 30, 2005 at 1:47 pm
The only reason I found to have a certain person own the database is if that person would be creating objects and you could NOT get them to remember to...
June 30, 2005 at 12:45 pm
FYI:
To get one of my Windows 2003 Server OEM with SQL 2000 SP3a to work using MSDTC; I had to re-install MSDTC.
I used http://support.microsoft.com/default.aspx?scid=kb;en-us;891801
AND...
June 24, 2005 at 3:26 pm
Viewing 15 posts - 46 through 60 (of 74 total)