Viewing 15 posts - 16 through 30 (of 87 total)
please try DDL Triggers if you having SQL Server 2005 or Higher
June 2, 2011 at 4:13 am
How many datatabase you have in SQL Server 2000?
Check your SSMS's Object Explorer
It gathers lot of information while you connect a database. Right click on header fields and select only...
June 2, 2011 at 4:11 am
If your users are in Active directory there will no issue occur. But I suggest test out your complete migration plan with new domain before go final migration
May 23, 2011 at 3:25 am
Would u please share the complete scenario with some samples?
May 23, 2011 at 3:09 am
Same resources as you configure first instance.
May 23, 2011 at 3:01 am
Most important is SSRS Key Backup
May 23, 2011 at 3:00 am
Check VIEW DEFINITION Permission if you have SQL Server 2005 or higher version
May 23, 2011 at 2:58 am
Yes! you can install another SQL Server Instance on A/P cluster but you have to separate resource for the new Instance.
May 23, 2011 at 2:49 am
Hi,
There is option to copy .mdf, .ldf files even your database is online. The technology is VSS (Volume Shadow Copy) SQL Writer service coordinate with windows VSS service and provide...
March 15, 2011 at 2:48 am
March 10, 2011 at 11:07 am
Hi,
It is possible and look like :
DECLARE @STR Varchar(max)
DECLARE @TableName Varchar(256)
SET @TableName = 'YourTableName'
SELECT @STR= ISNULL(@Str,'') + ', ' + Column_Name
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = @TableName
AND...
March 10, 2011 at 5:23 am
Hi,
check your request waiting by quering following.
select session_id,start_time,status,command,DB_NAME(database_id) As dbName
,wait_type,wait_time,t.text
from sys.dm_exec_requests r
cross apply sys.dm_exec_sql_text (r.sql_handle) t
where r.session_id >51
order by r.wait_time desc
March 10, 2011 at 5:02 am
Ask following questions to application team before migration.
1.Does application upgraded to use SQL Server 2008 version database?
2.If your application is not ready to use Database in compatibility 100 than what...
March 10, 2011 at 4:48 am
Hi,
There no native option/feature available in SQL server to do this. The Most important thing is that what is your requirement? Why you want to maintain 2nd copy of...
March 10, 2011 at 3:52 am
Viewing 15 posts - 16 through 30 (of 87 total)