Viewing 15 posts - 37,366 through 37,380 (of 39,818 total)
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
They are. I think the message is out that security and stability are more important than features. Notice .NEt server went RC1 the other day. Was supposed to be gold...
July 30, 2002 at 10:04 am
I tend to do this on an ongoing basis. To revisit an entire design is not usually practical or possible given uptime needs.
In my last job, we would contstantly identidy...
July 30, 2002 at 9:57 am
Viewing 15 posts - 37,366 through 37,380 (of 39,818 total)