Viewing 15 posts - 391 through 405 (of 545 total)
did you move the Logins as well and which method did you use.?
Try this goto the Database (use Database)
then sp_change_users_login 'Report'
if anything shows up in the RESULTS, they are Orphaned...
June 29, 2008 at 6:52 pm
Are you using a windows ID or SQL ID in OSQL -U and just a note, try using SQLCMd insted of OSQL as it will be removed in future versions.
Also,...
June 29, 2008 at 6:45 pm
I think you can only use SQL Logins with the -U and -P Switch.
In order to mask your PAssword you can specify OSQL -U username then press enter and in...
June 29, 2008 at 6:27 pm
By the way: Which EDITION/version of SQL are you using
Are you backing up to the default Location or Other Location than \MSSQL\Backups Folder.
If you have different location, Pl check...
June 28, 2008 at 5:31 pm
Check to see if this relates to your issue:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=309672&SiteID=1
also they talk about AUTO CLOSE Peoperty on those Databases. Check that
June 28, 2008 at 10:03 am
which version/Edition of SQL Server are you using.
Are you by any chance using SQL Express.
June 28, 2008 at 10:02 am
ALTER DATABASE (DBNAME)
MODIFY FILE (NAME='LOGICAL FILE NAME', FILENAME ='NEW FILE PATH')
June 27, 2008 at 10:55 am
Forgot to mention, After running the above Query, all the GRANT Statements will be in the result window. Just copy and past to another window and execute, you should be...
June 27, 2008 at 7:13 am
TRY THIS:
use dbname
select 'GRANT EXECUTE ON '+name+ ' to username' from sysobjects
where type='P'
and category=0
June 27, 2008 at 7:11 am
do you get the same error when connected using SA
June 26, 2008 at 7:21 pm
Which OS are you using? Which SQL Server edition/version
June 26, 2008 at 7:18 pm
yes DTS or SSIS is a good approach and secure.
SSIS supports 2000 Databases.
June 26, 2008 at 5:30 pm
use the Transfer SQL Server Objects Task in SSIS.
also use a VBScript or a T-SQL
June 26, 2008 at 1:44 pm
I am not sure, how to do a BULK Load.
Only if you have all you packages under one Project.
Or you can create a batch File with the DTUTIL.
Have you checked...
June 26, 2008 at 12:05 pm
Viewing 15 posts - 391 through 405 (of 545 total)