Viewing 15 posts - 1,066 through 1,080 (of 4,745 total)
look into transactional replication.
the table will have to have a primary key.
April 14, 2012 at 4:35 pm
as this is a one off task you can script out all the jobs using SSMS.
select jobs in the left hand pane. select F7 and you will see the jobs...
April 14, 2012 at 2:09 pm
dba.zahid (4/13/2012)
April 13, 2012 at 3:59 am
If you are sure the file is there in the location you installed SQL to it might be worth checking permissions, the error could be misleading.
You could run process monitor...
April 12, 2012 at 3:49 am
is SSIS installed on this computer?
April 11, 2012 at 2:55 pm
I can confirm you need the log backup restored as well.
April 11, 2012 at 2:49 pm
Full instructions are here, although MS instructions on this are confusing as hell. Just the encryption key restore should do you
April 11, 2012 at 2:02 pm
you need to restore the encryption key from the SSRS instance you copied the RS database from
April 11, 2012 at 1:40 pm
anonymous2009 (4/10/2012)
Thanks!When I execute SELECT USER_NAME(), I get the result as guest.
you are getting into database as guest user then, this is one of the users listed below. This shows...
April 10, 2012 at 3:56 pm
you must be a member of a windows group that has SQL access.
select * from sys.database_principals or exec sp_helpuser
April 10, 2012 at 3:09 pm
thats what sp_help_revlogin does for sql authenticated ids, it scripts them out and maintains the sid and password
April 9, 2012 at 11:36 am
Perry Whittle (4/7/2012)
george sibbald (4/4/2012)
User databases either backup\restore or detach\attach. Backup\restore usually best because the files to copy are smaller and backout is easier if problems with the migration.
The backups...
April 7, 2012 at 7:23 am
avg_fragmentation_in_percent = 0 means you have no fragmentation so that would not change after a rebuild.
an avg_page_Space_Used_in_Percent = 0 says the pages are empty.
I would suggest there is not enough...
April 5, 2012 at 4:43 pm
BTW just check you don't have any user defined error messages. Check the sysmessages tables for error nos above 50000
set quoted_identifier off
select 'exec sp_addmessage ' +convert(varchar(10),error) +"," +convert(char(2),severity) +"," +"'"+description...
April 5, 2012 at 4:20 pm
They won't be set.
I don't have a script to reverse engineer them as I don't change that many of them (you should not need to), I use a script if...
April 5, 2012 at 10:01 am
Viewing 15 posts - 1,066 through 1,080 (of 4,745 total)