Viewing 7 posts - 16 through 22 (of 22 total)
Yes. that's what's reporting uninitialized subscription.
June 16, 2011 at 11:52 am
I accept I got it wrong, but what do you mean the second transaction fails? Only the insert null into the primary key field statement fails. There are no failed...
December 18, 2010 at 11:49 pm
Okay but where does the numbering at the end of the underscores correspond to the spid that created it?
Hypothetically, lets say I wanted to see what spid owned each copy...
November 22, 2010 at 3:44 pm
Thank you so much! And I learned about common table expressions today. 😉
I love SQL Server Central!
April 13, 2010 at 2:26 pm
Yes. It should only update if there is exactly one match (eg. ZETA_RHO_23 could match ZETA and RHO, therefore no update, KATHUMPA_GORGANZOLA_6, no match, no update) and the list needs...
April 13, 2010 at 12:59 pm
Like this?
create table #myTableOfProjectInstances(ProjectInstanceName varchar(1000), CorrespondingProjectName varchar(100))
insert into #myTableOfProjectInstances(ProjectInstanceName) values ('ALPHA_12')
insert into #myTableOfProjectInstances(ProjectInstanceName) values ('BETA_GAMMA_25')
insert into #myTableOfProjectInstances(ProjectInstanceName) values ('DELTA_PRODUCTION')
insert into #myTableOfProjectInstances(ProjectInstanceName) values ('TXEPSILON')
insert into #myTableOfProjectInstances(ProjectInstanceName) values ('ALPHA_26')
create table #myTableOfProjectsByName(ProjectName varchar(100))
insert...
April 13, 2010 at 12:15 pm
Viewing 7 posts - 16 through 22 (of 22 total)