Viewing 15 posts - 16 through 30 (of 43 total)
ok thanks plz guide me as i have added new sp in database sp_getdata
now in model added function import..
then in return a collection of :: Entity of table right? or...
April 20, 2012 at 10:27 am
you mean to say... no need to convert syntax??
directly add these sql statement into stored procedure and use that sp??
April 20, 2012 at 10:18 am
select dbo.GetConfigurationValue_GUID('Fireball', 'Fireball Persistence Source')
this returns:
5C72E9D7-90CB-462C-8D6F-F8AF4163A416
January 2, 2012 at 5:16 am
SELECT
Class.EntityType
FROM
dbo.MultiSourceTableClassMap TableClass
INNER JOIN
Fireball_MetaData.dbo.Class ON
Class.ClassId = TableClass.ClassId
WHERE
TableClass.TableName = 'Fireball.dbo.Bond'
this query giving me output : 2026ADB1-83FA-484A-AC95-2136AD94E638
I have taken @SourceId = 0 .
I'm not sure from where it is coming this parameter.
January 2, 2012 at 5:04 am
varbinary value yes... but i'm getting null value i dont know why 🙁
January 2, 2012 at 4:45 am
I got it ... thank you 😉
December 27, 2011 at 7:35 am
I tried yours 🙁 fail same error 🙁
December 21, 2011 at 8:55 am
where exactly change is needed ?
December 21, 2011 at 8:51 am
hmm alright but my use of WITH(NOLOCK) in delete block is correct or not?
November 16, 2011 at 8:14 am
OPPS 😛
November 16, 2011 at 8:11 am
@gila yes sir...
i knew that if i don't use NOLOCK i will definitely get a deadlock so for successful
execution i need to use NOLOCK
November 16, 2011 at 8:07 am
its a huge long store procedure depending upon conditions
i insert data , update data and delete data from tables..
what i have posted is just a sample code of SP.
but i'm...
November 16, 2011 at 8:05 am
many reports are accessing this stored procedure at the same time so TO AVOID DEADLOCK I'M USING THI 🙂
November 16, 2011 at 7:58 am
i.m just using this stored procedure for reporting purpose..
please let me know my usage is at right or not?
November 16, 2011 at 7:53 am
Viewing 15 posts - 16 through 30 (of 43 total)