Viewing 12 posts - 46 through 57 (of 57 total)
try this
EXEC [SERVERNAME].[DBNAME].dbo.sp_Help 'ViewName'
November 19, 2013 at 11:36 pm
you can achieve it through many ways like.
Execution Context
Cross DB Ownership Chaining
Create same user in both databases.
but keeping security and the associated risks with...
November 19, 2013 at 11:25 pm
there are many ways to handle this..
1. take regular log backups.
2. log shipping.
3. mirroring
hope this helps.
November 18, 2013 at 10:43 pm
try this
Select distinct IDID, Data= REPLACE((Select distinct t1.data as [data()]
From #Unpivot t1 Where t1.idid = t2.idid Order by t1.data FOR XML PATH ('') ), ' ', ',')
November 18, 2013 at 10:29 pm
if you restore SQL 2005 on SQL 2008 you will not be able to make use of some of DMV's unless you change compatibility level to 100 and also ...
November 17, 2013 at 10:28 pm
if you want to archive data by horizontally partitioning the table then you have to go for table partition, but for table partition you need to have good candidate key...
November 17, 2013 at 7:03 am
we normally archive data either through table partition or we make use of filtered index.
November 17, 2013 at 4:58 am
as Steve rightly mentioned latest Service pack for SQL Server 2008 R2 is SP2
November 17, 2013 at 4:43 am
Hi,
Below are the steps i normally follow..
1. I check is there any blocks through sp_who2 (check BlkBy column)
2. if there any blocks, check both SP ID (SPID & BlkBy SP...
November 17, 2013 at 4:06 am
Hi,
I think the better solution would be to have log shipping enabled on both Proc1 & Web1 to site B and then enable replication only if you want to put...
November 17, 2013 at 3:44 am
Hi,
you can upgrade yourself to MS SQL 2008 or MS SQL 2012, MS has changed Certification pattern in SQL 2012.
November 17, 2013 at 1:55 am
Hi,
I think we can achieve the same without rank function.
SELECT * FROM GetMissingItems WHERE RowNumber = 1
July 29, 2010 at 5:34 am
Viewing 12 posts - 46 through 57 (of 57 total)