Viewing 15 posts - 37,066 through 37,080 (of 39,520 total)
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
I saw this today in Access as well for a subquery.
Don't "build" queries. Write them.
Steve Jones
July 30, 2002 at 1:14 pm
Viewing 15 posts - 37,066 through 37,080 (of 39,520 total)