Viewing 15 posts - 166 through 180 (of 210 total)
We're a small shop (1 dedicated SA, 1 dedicated DBA) but I have local admin rights to all boxes hosting SQL Server. It's helpful when we have to manage disk...
May 19, 2009 at 7:11 am
http://support.microsoft.com/kb/288577
To identify the specific task and error message about why the job failed, you need to check the Database Maintenance Plan History. The Database Maintenance Plan History is where you...
May 15, 2009 at 7:48 am
Can you post the error message from Job History?
May 15, 2009 at 6:24 am
debbie.coates (5/15/2009)
Is there a way that i can create an after update trigger that will detect if there is a corresponding record with a 999 prefix and update that record?
Try...
May 15, 2009 at 6:19 am
Since I don't have access to manage domain accounts in our environment, my preference is to use SQL Server Authentication in packages that go against other servers. That way if...
May 14, 2009 at 6:21 am
What type of security are you using within the DTS package?
If it's Windows Authentication, then the package is using the account that starts the SQL Agent from the scheduled job.
May 13, 2009 at 3:09 pm
If running freeproccache gives you a performance boost, you might be experiencing stale query plans. How's your fragmentation?
May 13, 2009 at 2:50 pm
Hi Ed, unfortunately there were no hardware upgrades just the OS.
There have been no substantial code changes and we've run a thorough reindex/update statistics twice since the upgrade. We've also...
March 17, 2009 at 6:59 am
Not nearly as elegant but might serve your purpose.
drop proc test
go
drop table test_table
go
create table dbo.test_table (Serial_No int)
go
insert into dbo.test_table values (1)
insert into dbo.test_table values (3)
insert into dbo.test_table values (5)
insert into...
March 17, 2009 at 6:47 am
Do you want to report back the "null" record(s) or just that a null exists somewhere in the table?
October 17, 2008 at 6:11 am
There's always a work around!
drop table #tmp
go
Create table #tmp
(
eno varchar(1),
ename varchar(25)
)
go
insert into #tmp
select '1','Karthik'
union
select '2','Keyan'
union
select '3','Mani'
Declare @Column varchar(5)
, @sql varchar(500)
select @Column = 'ename'
set @sql...
October 16, 2008 at 7:12 am
You could deny rights on this table to the user/role.
DENY SELECT ON [tblname] TO Public
October 15, 2008 at 1:58 pm
While KILL works isn't it easier to alter the db to SINGLE_USER WITH ROLLBACK IMMEDIATE than having to potentially hunt down and kill multiple processes?
[Quote]Setting Database Options (http://msdn.microsoft.com/en-us/library/aa933082(SQL.80).aspx)
SINGLE_USER...
September 26, 2008 at 2:44 pm
When you run the DTS manually, are you using a different account than the one that starts the SQL Agent?
The account that starts the SQL Agent is what the job...
September 25, 2008 at 3:19 pm
Error string: The number of failing rows exceeds the maximum specified.
I've seen this before using a DTS package that imports data from Excel into a table. It's usually because of...
September 24, 2008 at 12:47 pm
Viewing 15 posts - 166 through 180 (of 210 total)