Viewing 15 posts - 496 through 510 (of 540 total)
thanks rubes
we are going with the same approach stop data entry, move db's to another server, change DSN, rebuild server, install standard edition, move back the db's, and change the...
July 12, 2007 at 8:41 am
Glenn is there more than 1 instance of SQL or an instance of other RDBMS on the box?
July 11, 2007 at 12:48 pm
I used to get that error.
it was fixed after i ran this:
sp_configure 'remote query timeout', 0
go
reconfigure with override
go
July 11, 2007 at 10:15 am
THANK YOU ALL FOR ALL YOUR REPLIES.
RUDY i modified my existing statement and added DATABASEPROPERTYEX and also used it to avoid read only databases as well.
select name from sysdatabases
where name...
June 6, 2007 at 1:50 pm
SQL ORACLE it doesn't work
select name from master..sysdatabases where dbid not in(1,2,3,4) and status > 511 and status <1024.
so will use this query from now on.
select name from master..sysdatabases where...
June 6, 2007 at 9:01 am
Thanks for your replies
I will use
select name from master..sysdatabases where dbid not in(1,2,3,4) and status not in(512,528,536)
or i can use
select name from master..sysdatabases where dbid not in(1,2,3,4) and version is...
June 5, 2007 at 11:39 am
If you want to change the SID in sql 2000 you can use sp_help_revlogin
http://www.databasejournal.com/features/mssql/article.php/2228611
in sql 2005 you can use:
USE master
GO
IF OBJECT_ID ('sp_hexadecimal') IS NOT NULL
DROP PROCEDURE...
May 24, 2007 at 10:07 am
Yes you can use SQL Agent to Execute a VB Script.
Create a new step.
Under Type choose "Operating System Command (CmdExec)"
In command window type the full path of the vbs.
C:\yourvbscript.vbs
May 23, 2007 at 3:51 pm
sp_change_users_login 'auto_fix', 'yourlogin'
Run the above statement in the restored database.
May 23, 2007 at 3:41 pm
May 23, 2007 at 3:23 pm
The setup will ask you to point to Disk2 folder.
Disk 2 contains Tools, BIDS, SSMS and Books online.
May 23, 2007 at 3:05 pm
I came up with this:
create
proc Exec_SQL_JOB
as
use
msdb
DECLARE
@PrintMessage NVARCHAR
May 2, 2007 at 9:22 am
You have to upgrade to Access 2007 or rewrite from scratch in 2007.
Access 2003 + SQL 2005 database (migrated from sql 2000) = nightmare.
That compatibility feature does not apply for...
April 30, 2007 at 3:21 pm
Utsab
If you're using Execute Task to move data using ODBC here is something you might wanna take a look at.
http://blogs.simplifi.com/brucet/archive/2006/01/27/668.aspx scroll to the middle.
To find missing data use this query...
April 30, 2007 at 10:49 am
Viewing 15 posts - 496 through 510 (of 540 total)