Viewing 9 posts - 1 through 9 (of 9 total)
its depends upon what option you are using for @sync_type if you are using repl support only option then 1st option is best. because There is a bug in sql...
October 29, 2013 at 4:52 am
first stop the distribution
then remove the subscription
truncate the destination table
run the BCP to transfer the data from source to destination.
add the subscription again using @sync_type parameter set to "replication...
January 7, 2010 at 5:06 am
sysdepends does not contains all dependent table informations. best approch is keep trace on and capture the data in a text file import that text file to a table the...
June 19, 2009 at 3:33 am
SELECT count(*) nomCount ,convert(varchar(4),year(orderdate))+ '-' + convert(varchar(2),month(orderdate)) 'Descr' FROM #temp
group by year(orderdate),month(orderdate)
having (year(orderdate)=2008 and month(orderdate) = 5) or (year(orderdate)=2009 and month(orderdate) = 5)
union
select count(1) as NomCount, 'Get counts for...
June 19, 2009 at 2:55 am
SELECT DISTINCT
o.name , oo.name
FROM sysdepends d,...
June 18, 2009 at 11:12 pm
surely char(1) because already said that it doesn't contain space or null value.
June 17, 2009 at 6:30 am
Surely char(1) because already said that no space or null value is there.
June 17, 2009 at 6:28 am
A server may contain different sql server services like 'SSAS','SSRS' etc.other than the database engine.
If Permission to connect to database engine checked deny then user cannot connect to database engine...
June 17, 2009 at 2:48 am
You can write union all then write union query order by the primary key. you can see the difference.
select primarykey as Primarykey,* from T1
union
select primarykey as Primarykey,* from...
June 17, 2009 at 1:16 am
Viewing 9 posts - 1 through 9 (of 9 total)