Viewing 15 posts - 526 through 540 (of 691 total)
Is I:\ your mapped drive?
If so, did you map it under YOUR NT Logonid?
If so, SQL Agent wouldn't know that the drive mapping exists. Determine what Logonid SQL Agent is...
June 30, 2004 at 12:29 pm
Its most likely a permissions issue. The account that SQL is running under doesn't have rights to your mapped drive. If at all possible, backup your databases to a local...
June 30, 2004 at 8:09 am
You know, it sounds like you're dealing with a primary key. Try this, replacing 'table_name' with the name of your table -
select s1.name from sysobjects s1
join sysobjects s2
on s1.parent_obj =...
June 29, 2004 at 3:36 pm
Tested on my test server which was running MDAC 2.7, and received the SQLState messages. Upgraded MDAC on that server to 2.8, tested again, still got 'em.
Steve
June 29, 2004 at 2:04 pm
I've experienced this on many of my "utility" stored procedures. It always shows up on output produced by print statements in a stored procedure, not in scripts.
I've not tried...
June 29, 2004 at 1:18 pm
A database can be backed up while in use. no problem.
Steve
June 29, 2004 at 1:06 pm
The sysindexes table will tell you which index # 1 is.
Steve
June 29, 2004 at 1:04 pm
Put it into a stored procedure and give exec rights to the procedure.
Steve
June 28, 2004 at 4:12 pm
I'm not sure about sysindexes, possibly the status column, but you'd have to decipher it.
You could load the output from sp_helpindex into a temporary table, and check the description column...
June 28, 2004 at 4:04 pm
Go into Control Panel, Administrative Tools, Services, find the MSSQLSERVER service, right click, select properties, then you should be able to modify the startup parameters.
Steve
June 25, 2004 at 3:37 pm
Have you tried changing it back?
Steve (not Jones)
June 25, 2004 at 12:51 pm
This is what I use...
if (select databaseproperty(@DB, 'istrunclog')) = '1'
begin
print ' * recovery model is SIMPLE. *'
set @flag = @flag + 1
end
if (select databaseproperty(@DB, 'isbulkcopy')) = '1'
begin
print ' * recovery...
June 25, 2004 at 8:11 am
Sounds like permissions. Verify that the security in your MSDE 2000 is set up identically to your 7.0 . Is the 2000 on a separate machine from the 7.0? If so,...
June 24, 2004 at 3:28 pm
SQL Server Agent is a service (SQLSERVERAGENT), so it can be changed within the services applet in Control Panel / Administrative Tools. I'm not aware of a SQL command to...
June 24, 2004 at 3:17 pm
Hey Doug,
Maybe breaking it out will make it easier to see...
(select min(foperno) from #temp t where t.fjobno = t1.fjobno and t.foperno > t1.foperno)
Steve
June 24, 2004 at 2:58 pm
Viewing 15 posts - 526 through 540 (of 691 total)