Viewing 15 posts - 151 through 165 (of 210 total)
My preference is to keep the scripts separate and run them one at a time. In our environment, we release bug fixes and enhancements to beta as they're fixed and...
January 20, 2010 at 8:06 am
Not a real elegant solution but would this work for you?
declare @customer table (customerid varchar(8))
declare @Tmp table (incrdate datetime)
declare @maxdate datetime
insert into @customer (customerid) values ('00009956')
insert into @customer...
January 19, 2010 at 7:43 am
In the DTS package, is the precedence between steps set to success or completion? This would affect how the job status is reporting.
January 15, 2010 at 8:22 am
Changes to existing code is usually a one-on-one with a dev team peer to make sure it meets coding/company standards and is well documented.
Reviews for new code is at least...
January 11, 2010 at 8:44 am
ok,
use master
ALTER SERVICE MASTER KEY FORCE REGENERATE
worked. thanks all for your help!
December 9, 2009 at 6:42 am
EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname = N'targetsrvname',
...
December 7, 2009 at 11:54 am
Yep, login works. it was the 2005 box (source) that was upgraded.
December 7, 2009 at 9:53 am
Nope, same thing.
Msg 15466, Level 16, State 2, Procedure sp_addlinkedsrvlogin, Line 91
An error occurred during decryption.
Msg 15185, Level 16, State 1, Procedure sp_addlinkedsrvlogin, Line 98
There is no remote user 'sql2000login'...
December 7, 2009 at 9:03 am
ok, changed to
exec sp_addlinkedsrvlogin
@rmtsrvname = 'targetsrvname'
,@useself = 'true'
,@locallogin = NULL
,@rmtuser = 'sql2000login'
,@rmtpassword = 'pwd'
and here's what I'm getting
OLE DB provider "SQLNCLI" for linked server "targetsrvname" returned message "Communication link...
December 7, 2009 at 8:32 am
It's actually a Windows account 'domain\sql2005login' but yes, it's on both instances.
December 3, 2009 at 8:41 am
If it's a one-off, I'd go with the import/export wizard. If this is something you'll need to repeat down the road, you might consider writing code (i.e. SP) to handle...
May 21, 2009 at 7:59 am
Can't remember where I got it but this might prove useful to you.
use master
go
if exists ( select * from tempdb.dbo.sysobjects o
where o.xtype in ('U') and o.id...
May 21, 2009 at 7:45 am
Would it make a difference if you reworked Lowell's trigger into an INSTEAD OF rather than a FOR/AFTER?
May 19, 2009 at 1:48 pm
Have you checked the physical server to identify what resources (IO, Memory, CPU, etc.) are being consumed?
May 19, 2009 at 1:29 pm
If you don't already have one, set yourself up a test box and get in the practice of trying stuff out there before applying it to a live db. I've...
May 19, 2009 at 7:21 am
Viewing 15 posts - 151 through 165 (of 210 total)