Viewing 15 posts - 31 through 45 (of 79 total)
when you do import export from database to other and table is having identity column then a step where you select source and destination table there you have edit mapping...
November 5, 2009 at 12:35 am
when you do import export from database to other and table is having identity column then a step where you select source and destination table there you have edit mapping...
November 5, 2009 at 12:34 am
is that poosible to have 10 publisher and one subcriber.
i guess u have 1 publisher and 10 subscriber.
publisher is one which is the primary data which publish data to...
November 4, 2009 at 3:42 am
hey,
try this command on the server where you are shipping the log that is target server
use master
restore database databasename with recovery
it might bring your restoring state db in online.
i have...
November 3, 2009 at 3:19 am
no database will not come online even if the service are restarted...
November 3, 2009 at 2:38 am
when ever u go for migration you should fix all comptability issues for download this tool
and go for migration
it will tell you all compilance and noncompilance issue that...
October 23, 2009 at 8:02 am
select 'DROP LOGIN [ '+name+'] GO ' from master..syslogins
where name not in ('domain\raj','raju')
this Tsql will give drop login script for all user except which you will filter out.
copy it and...
October 22, 2009 at 6:37 am
use the below query to get all desired logins
select 'DROP LOGIN [ '+name+'] GO ' from master..syslogins
where name not in ('','',,,)
in where caluse specify user which you dont want.
when u...
October 22, 2009 at 5:29 am
ya u r right..
suggested it becuase it the simplest way to copy the desired tables with less efforts and overhead like full database restores and on which is time consuming...
October 21, 2009 at 6:36 am
See the snapshot will have read only data of the database for which it has been taken at a particluar time.
Suppose a snapshot is generated at 10:00 am today so...
October 21, 2009 at 12:22 am
SQL agent services may have some windows login id to start or log on you check the in SQL Agnet Service property window. Check what type what right it has...
October 21, 2009 at 12:17 am
yes i actually i mean that prepare snap shot of the database and from the snapshot copy all the required tables. it would simple and without using any third part...
October 20, 2009 at 6:50 am
try creating database snapshots and import or restore the tables you want
October 20, 2009 at 6:11 am
please check id which sql server agent is configured for has full rights
October 20, 2009 at 6:06 am
if your using 2005
then
select 'drop table '+table_schema+'.'+table_name from information_schema
select 'drop procedure '+routine_schema+'.'+routine_name from information_schema.ROUTINES
where ROUTINE_TYPE ='procedure'
this will generate drop script.
or open SSMS open database and select tables folder and press...
October 20, 2009 at 6:02 am
Viewing 15 posts - 31 through 45 (of 79 total)