Viewing 15 posts - 1,966 through 1,980 (of 5,103 total)
Glad to help. You should be fine!
June 28, 2007 at 10:38 am
just use client code to get the results from the stored procedure or use OPENROWSET.
June 28, 2007 at 10:32 am
Here you go:
http://blogs.msdn.com/sqlprogrammability/archive/2007/01/17/10-0-plan-cache-flush.aspx
Any restores, lately? ![]()
Cheers,
June 28, 2007 at 10:25 am
NEWID() is used to general GUID values which are supposed to be globally unique values.
It is normally used in tables that Identify records using such values.
The use of it on...
June 28, 2007 at 9:21 am
Karthik,
The problem with what I posted is that regardless is a full table scan. Nolock will minimize the impact on others by not creating a shared lock in the entire...
June 28, 2007 at 9:06 am
not very performant but you could try:
select top 5 *
from [your table] with (nolock)
order by newid()
June 28, 2007 at 8:52 am
What *ususally* happens for batch inserts is that client side gets the limits and prepare the inserts there.
If the need arises to do it on the server side we...
June 28, 2007 at 8:28 am
Once againg you lack of knowledge is revealed.
DDL changes are supported in SQL Server 2005 replication.
Please can you just stop "trying" to guess stuff.
June 28, 2007 at 8:19 am
Once again you are showing inexperience. If a single database fails over and you have a "view" pointing to another of the set what would you think happens ?
Please refer...
June 28, 2007 at 8:17 am
I know the feeling. Sorry you have to have PKs or use Merge but Merge is probably too intrusive for PS
June 27, 2007 at 11:47 am
If you have decided to remove replication settings try:
sp_removedbreplication @dbname = 'dbname'
On the publisher database.
Cheers,
June 27, 2007 at 11:46 am
These are the steps:
1. EXEC sp_MSenum_replication_agents @type = 1
from there extract snapshot Job name that belongs to the publisher_db you are interested
2. EXEC msdb.dbo.sp_start_job @job_name = @SnapshotJobName --...
June 27, 2007 at 11:41 am
SQL Server Transactional replicattion *requires* primary keys, Period.
You could try to use DB mirroring but I am not sure it fullfil your needs, Do you need the replica as a...
June 27, 2007 at 11:37 am
1. try: dbcc sqlperf(logspace) to figure out how much free space you have on the log.
2. TRUNCATE_ONLY is deprecated in 2005 so you have to backup the log. If...
June 27, 2007 at 11:34 am
Viewing 15 posts - 1,966 through 1,980 (of 5,103 total)