Viewing 15 posts - 37,006 through 37,020 (of 39,461 total)
Nothing I know of, but I suspect you can do this, but the SQL (rgular) install will be an instance.
Steve Jones
August 1, 2002 at 1:59 pm
You will save headaches as Brian mentioned. ALWAYS use roles and groups. NEVER assign individual users.
Steve Jones
August 1, 2002 at 1:52 pm
What do you mean? Run profiler programmatically? This can be done. There are stored procedures to run server side traces.
Steve Jones
August 1, 2002 at 1:37 pm
I believe you can restore or attach a SQL 7 database, but you'd have to try. Can't hurt.
You do not need to run "sp_change..." unless you need the users. You...
August 1, 2002 at 10:47 am
search google with "decrypt stored procedure"
Steve Jones
July 31, 2002 at 5:50 pm
Are these a single transaction?
Check the log and data phyiscal location, you may have a hardware issue.
Are you sure this is hte only index?
Steve Jones
July 31, 2002 at 5:46 pm
max should give you the max date. Are these character values?
you can do max(datepart(year, value))
Steve Jones
July 31, 2002 at 5:45 pm
You will need to assign the execute right, but you can create your own role to do this and assign the users to the role. It can be a user...
July 31, 2002 at 5:44 pm
This is a page id from the pages stored in the db. You can get the objectid from each database and query each table (Select *). One should give you...
July 31, 2002 at 3:24 pm
bcp out, bcp in. Backups are not compatible.
Steve Jones
July 31, 2002 at 1:43 pm
search sysobjects in each database.
Steve Jones
July 31, 2002 at 1:28 pm
use if
create trigger
as
if (select status from inserted) = 'Complete'
update table
set completedate = getdate()
from inserted
where table.pk =...
July 31, 2002 at 10:59 am
Is there any history in the jobs? As Andy said, check that they are not running.
Steve Jones
July 31, 2002 at 10:56 am
Viewing 15 posts - 37,006 through 37,020 (of 39,461 total)