Viewing 15 posts - 16 through 30 (of 118 total)
Hey,
thanks a lot, the minute mistake which we had done is, for dbo schema related table we had not added dbo.tblUserBookMapping for the dbo schema related tables.
thanks for making me...
May 8, 2012 at 2:13 am
I tried, the same way but dint work 🙁
i also tried this way, i removed all the contents of the procedure, i replaced the below 2 statements
Select *...
May 8, 2012 at 1:35 am
tblUserBookMapping is of dbo schema
May 8, 2012 at 1:22 am
I am executing the Procedures as below
exec [MyBook].uspGetCatelogues @userid=1,@RoleId=1,@CodeStatus='999999'
i am not getting any error, the same if i try this way i am getting the output that to...
May 8, 2012 at 1:14 am
Sorry for not texting the procedure
procedure is as follows all the tables and sps are in sql2005
CREATE PROCEDURE [MyBook].[uspGetCatelogues]
(
@user-id BIGINT, ...
May 8, 2012 at 1:05 am
Hi,
I am here with sending the code. Here i am trying to avoid others IP than the mentioned one in the code.
CREATE TRIGGER tr_logon_hostname_whitelist
ON ALL SERVER WITH EXECUTE AS 'sa'
FOR...
April 20, 2012 at 5:09 am
Hi,
Sorry i have one more query, assuming i have 16 Cores of CPU with 2 SQL instances. For 1 SQL Instance i have alloted 4 Cores and for other i...
March 23, 2012 at 11:37 pm
Ok Thanks, i will read on this.
March 22, 2012 at 2:06 am
Hi,
thanks a lot for the response, 1 more request is to know is it good or bad to acheieve the same. Or pros and cons on the same
With Regards
Dakshina Murthy
March 22, 2012 at 1:23 am
What should be the output of this query,
SELECT DATABASEPROPERTYEX('Your Database Name', 'IsSyncWithBackup');
how to check the latency is there any query to do the same, please help.
November 16, 2011 at 6:04 am
As of now i have re created the replication and hence its working, now if i execute the mentioned query i am getting 0 as the output. Please help me...
November 15, 2011 at 9:44 pm
It is through a transactional replication with the help snapshot, initialy main db was backuped, restored in a different server, then create a publisher and snapshot created then the subscriber...
November 15, 2011 at 6:56 am
It doesnt fire any error in the replication monitor, if i try to update any existing value of any table it will not replicate.
November 15, 2011 at 6:48 am
Hi,
thanks a lot, i just modified after i got your query. it was really usefull thank you.
select column_name = c.name, object_name(ic.object_id), Si.Name
from sys.index_columns ic
inner join
sys.columns c
on ic.object_id = c.object_id and...
February 24, 2011 at 6:13 am
Hi,
i am using like this
insert into dbo.changelog(databasename, eventtype,
objectname, objecttype, sqlcommand, loginname)
values(
@data.value('(/EVENT_INSTANCE/DatabaseName)[1]', 'varchar(256)'),
@data.value('(/EVENT_INSTANCE/EventType)[1]', 'varchar(50)'),
@data.value('(/EVENT_INSTANCE/ObjectName)[1]', 'varchar(256)'),
@data.value('(/EVENT_INSTANCE/ObjectType)[1]', 'varchar(25)'),...
April 20, 2010 at 12:02 am
Viewing 15 posts - 16 through 30 (of 118 total)