Viewing 15 posts - 31 through 45 (of 85 total)
Lynn 🙂
Haha I confused you with my bad english....or may i did not understand this statement
set identity_insert dbo.FamGroup_Lookup off;
go
But when I used your query on my database,...
March 14, 2013 at 12:03 pm
Thanks to every one who has been trying to help me...
Lynn, I have to update the column with the primary key not with the identity key...
here is the solution...I just...
March 14, 2013 at 10:58 am
well on a sample table yes it works... On my actual production table it wont the errors that i have been showing you are from my production table
March 14, 2013 at 10:13 am
UPDATE employees
SET ID= EXTENDEDID
WHERE ID<> EXTENDEDID
Same Error
Msg 512, Level 16, State 1, Procedure trig_AfterFamGroupInsert, Line 10
Subquery returned more than 1 value. This is not permitted when...
March 14, 2013 at 10:02 am
Infact the same error for all of them like i mentioned before...
This is the statement
update employees set ID = EXTENDEDID
I get
Msg 512, Level 16, State 1, Procedure trig_AfterFamGroupInsert, Line 10
Subquery...
March 14, 2013 at 9:13 am
@ above all
Well, its just an example... My work place might have had really bad designers when they started designing the database... That Primary key column(ID) is not used in...
March 14, 2013 at 8:00 am
use select statement followed by order by columnname DESC
March 13, 2013 at 10:53 pm
I am planning to take this exam too.. Katie and Emil's website is giving me pretty good approach.. Thanks
March 13, 2013 at 10:08 pm
Donno How I missed this simple detail... Thanks a ton.. u saved my day
March 7, 2013 at 5:45 pm
Thanks for the reply
my requirement is using a while loop because there are some 300 lines of code is involved after selecting each dbname in the while loop..
I wonder if...
March 7, 2013 at 5:02 pm
Eugene Elutin (3/4/2013)
...But in order to do replication the subscriber should be able to connect to the publisher??? I am confused. Can I set up replication between two disconnected servers.???
I...
March 4, 2013 at 9:05 am
This is my Answer....
Lynn Pettis (2/26/2013)
Looking at your dynamic...
February 26, 2013 at 10:10 am
I want to delete this post...It a mistake..Donno how to do it... SO writing somehting
February 26, 2013 at 10:04 am
SOurce table
CREATE TABLE [dbo].[PSBackupStatistics](
[POLID] [int] NOT NULL,
[DateModified] [smalldatetime] NULL,
[FileSizeinKB] [bigint] NULL,
[Location] [nvarchar](255) NULL,
[Parish] [nvarchar](255) NULL,
[Diocese] [nvarchar](255) NULL
) ON [PRIMARY]
GO
Destination Table
CREATE TABLE [dbo].[Organization](
[OrganizationID] [int] NOT NULL,
[DioceseID] [int] NULL,
[ParishID] [int] NOT NULL,
[Diocese]...
February 26, 2013 at 9:48 am
Viewing 15 posts - 31 through 45 (of 85 total)