Viewing 15 posts - 1 through 15 (of 42 total)
Corrected it in the c# program before calling the stored proc.
April 23, 2013 at 12:17 pm
Thank you, yes, I just came around the problem with the same type of solution.
Something like : str(cast('252536e+003' as real) )
Thanks again.
February 4, 2013 at 7:08 am
drew.allen : yes, tweaked it a bit but this works fine.
Thank you all for your help.
March 29, 2012 at 11:19 am
Yes, that is part of the problem, unfortunately, we cannot change this and add a unique constraint.
March 29, 2012 at 9:29 am
Only one line of each user in the Users table.
March 29, 2012 at 9:18 am
Here's the sample code :
CREATE TABLE [dbo].[Users](
[ID] [int] IDENTITY(1,1) NOT NULL,
[UserName] [varchar](20) NULL,
[Email] [varchar](20) NULL,
CONSTRAINT [PK_Users] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE =...
March 29, 2012 at 9:02 am
My bad, wrote the post too quickly, I edited the original post, I was missing the UserId and corrected the INNER JOIN clause.
March 29, 2012 at 8:39 am
Phil Parkin : well, the tables are simplified but it's almost as is in terms of structure.
Thanks guys, I just added the SELECT COUNT(*) = ... at the end of...
February 8, 2012 at 6:20 am
Thanx, exactly what i needed.
December 3, 2010 at 10:38 am
Found the topic : http://www.sqlservercentral.com/Forums/Topic775518-146-1.aspx?Update=1
Thanks
December 3, 2010 at 9:39 am
Where can I find that 'Schema Changes History' report for that database?
I searched everywhere, to no avail.
Thanks
December 3, 2010 at 9:37 am
Derrick Smith (8/26/2010)
RPC is a setting on your end, not the client's. Check the properties for the linked server (RPC and RPC Out)
Indeed, I thought the error I was receiving...
August 31, 2010 at 10:14 am
Hi Lowell,
Almost works, Error : Msg 7411, Level 16, State 1 Server is not configured for RPC
Found this article :
But the server referenced as the 'linked server' is...
August 26, 2010 at 11:02 am
Hi kalyanp79,
kalyanp79 (8/26/2010)
You can try this but I am not sure whether this will work or not. I didn't tried yet.
SELECT * FROM OPENQUERY(LinkedSrvrName, 'DROP TABLE Database.MyTab SELECT NULL')
It...
August 26, 2010 at 10:18 am
Viewing 15 posts - 1 through 15 (of 42 total)