Viewing 15 posts - 76 through 90 (of 139 total)
Well tried to create publication and got following error
A exception occurred while attempting to execute a tsql statement or batch
Can not find procedure “”
Can not find procedure “”
Change the database...
August 19, 2011 at 8:29 am
As always, SPOT ON. Great.
DECLARE @DatabaseName VARCHAR(50);
SET @DatabaseName = 'Big_VirtualLog_DB'
SELECT name, recovery_model_desc, log_reuse_wait_desc
FROM sys.databases
WHERE name = @DatabaseName
log_reuse_wait_desc is showing "REPLICATION". Because this...
August 19, 2011 at 6:08 am
Great.
So that was the base reason, which has cause the locking. REBUILD iNDEX commands for few indexes were issued without these two options and that has killed everything.
Re-enabling allow_page_lock and...
August 10, 2011 at 10:02 am
Hi,
May be following query will be helpful for you OR someone else.
select
object_schema_name(object_id),
object_name(object_id),
name,
'ALTER INDEX ' + name + ' ON '+object_schema_name(object_id)+'.'+object_name(object_id)+' REBUILD;'
,*
fromsys.indexes
wheretype > 0
order by
object_schema_name(object_id),
object_name(object_id)
August 9, 2011 at 5:51 am
Hi,
What can be the advantage OR dis-advantage, if both of these are ON
ALLOW_PAGE_LOCKS
ALLOW_ROW_LOCKS
I have already studied your comment where both are off.
If turning these both ON is beneficial? then...
August 9, 2011 at 5:19 am
Hi,
Well 4000 lines are one transaction with most of the object of our xml model.
XML model input is joining with many different tables based on different condition in the proc...
August 8, 2011 at 3:36 am
i am already running 1222, Following is the snapshot of one of the lock, if this gives you sufficent details for understanding.
So what do you suggest?
Thanks.
deadlock-list
deadlock victim=process1c8def2e8
process-list
...
August 5, 2011 at 9:14 am
Any joy?
Ok now we are moving to a next level. Now every server is either 2008 R2 OR 2008.
Do we now have any better choice?
August 5, 2011 at 3:16 am
Thanks.
So the possibility is there that rebuilding index can change things.
But how to narrow down this. what next step shall i take?
PS:
Well more than 80% and its not reducing...
August 5, 2011 at 3:14 am
Hi,
Manal Sync is quite tedius and maintenance cost is very high.
Do you know, if replication from R2 to 2005/08 is really possible and will really work? and without any version...
July 22, 2011 at 10:45 pm
Yes you are right. t
The combined datalength(new_resultant_col) is more than 100,000.
But even then i can't see that even in note pad text file.
Why? and how to see such things...
July 19, 2011 at 2:36 pm
Well size of combined one xml is not even 1MB.
Now i have added a new varchar(max) column in the table and did a simple update
update table set new_col = col1+col2+col3+col4+....
now...
July 19, 2011 at 2:25 pm
Great Champ!!!! Excellent work.
BY giving the namespace in individual item, it worked as desired.
However, I am still not sure what's the purpose of this "*." in this clause ...
July 10, 2011 at 12:56 am
Excellent!!!
This works with single element in body. Of course one cannot write n number of outer apply for each element in body. I have tested following and its giving...
July 8, 2011 at 8:54 am
Great Now,
The pupose of question was to select from multiple nested namespaces and with the same name of namespace.
Now i also want to see as column value from <a:To ........
July 8, 2011 at 7:21 am
Viewing 15 posts - 76 through 90 (of 139 total)