Viewing 8 posts - 1 through 8 (of 8 total)
Just updating the thread to show my solution
Not the most elegant solution, but it works....
-- For the sake of testing I have used table variables
DECLARE @Table1 TABLE ( ID INT...
July 12, 2010 at 3:23 am
Thanks for the reply's.
Wayne's solution looks closest to what i am after, but i think it'll need a little tweaking. I'll keep you all updated with how I get...
July 7, 2010 at 10:58 am
A few of things you can try;
- Try changing the default tcp port from 1433
- Disable windows firewall Control panel => Administrative tools => Services and stop windows firewall. Or if...
March 28, 2007 at 8:12 am
The script I am using is as follows;
if not exists (select * from dbo.sysusers where name = N'User' and uid < 16382)
EXEC sp_grantdbaccess N'User', N'User'
GO
March 28, 2007 at 4:22 am
Seems like the problem is with the server being on a different 'Domain'
I will post more info when I finish troubleshooting it
March 27, 2007 at 9:44 am
Im using an 'alias' with a hard coded IP and port so I have the browser service disabled.
Although saying that, I started off by using the Browser service, but didn't...
March 27, 2007 at 7:03 am
Just to clarify where I am and what I have tried
Basically on the remote computer I log in with "sa" and it says it connects, but it doesn't look/behave like...
March 27, 2007 at 2:24 am
Surface Area Configuration is setup correctly (on the server):
Database Engine/Remote Connections => Local and Remote Connections - using both TCP/IP and named pipes.
March 27, 2007 at 1:38 am
Viewing 8 posts - 1 through 8 (of 8 total)