Viewing 15 posts - 16 through 30 (of 74 total)
I would look at the runas command, I can't figure out how to give it a password programaticaly maybe you will have more luck.
Note: I have not needed to ever...
March 23, 2006 at 5:45 pm
It the server setup to use TCP/IP connections?
What port is it using?
Is there a firewall? If so, is the above port open?
Can you connect locally using the below as server...
March 23, 2006 at 2:39 pm
If you run the below command does it report the correct user?
SELECT SYSTEM_USER;
Tim S
March 22, 2006 at 6:11 pm
Right Click on the short-cut to QA and choose Ran AS then pick or enter your username.
Tim S
March 22, 2006 at 1:30 pm
I am thinking today or tommorrow.
They took down the KB article.
http://support.microsoft.com/kb/904660/
So, I think they must be updating it.
Tim S
March 20, 2006 at 2:40 pm
Have you checked to see if someone changed the code in the master stored procedure sp_MSdbuseraccess.
It is what displays the list of DBs
Try the following in Query Analyzer
use master;
GO
EXEC sp_MSdbuseraccess...
March 17, 2006 at 6:40 pm
Number one is NOT true if the table and views reside in different databases and
DB chaining is turned off.
( I don't use DB chaining so I don't know what it...
March 17, 2006 at 6:16 pm
Please do this ONLY after you grant your NT account sysadmin rights.
exec sp_denylogin @loginame=[Builtin\Administrators] --> this stops any Administrator, including Domain Admins
Tim S
March 9, 2006 at 2:21 pm
Did you check "Cross database ownership"
Like be low code replace Northwind with the database with the tables in it.
Tim S
USE master
EXEC sp_configure 'Cross DB Ownership Chaining'
EXEC sp_dboption 'Northwind', 'db chaining'
March 7, 2006 at 2:52 pm
If you want to try putting the same drivers just install MDAC 2.8 SP1
http://support.microsoft.com/kb/899456
AS-IS No Warrenty
Tim S
Download link: http://www.microsoft.com/downloads/details.aspx?familyid=78cac895-efc2-4f8e-a9e0-3a1afbd5922e&displaylang=en
February 13, 2006 at 2:44 pm
Have you tried using cliconfg.exe to create an alias that uses the fully quailfied domain name in the server name?
It could be a WINS name resultion that is causing...
February 13, 2006 at 2:39 pm
It is very hard to convert a well written trigger to use a stored procedure.
Most likely your trigger will not work on multiple row update very well.
Edit: Even if you...
February 7, 2006 at 10:07 am
February 7, 2006 at 10:03 am
quick & dirty answer below
note: I don't use cursor very often and the datatypes are most likely not the best.
Tim S
declare @server_name varchar(256), @server_id int, @rmtloginame varchar(256), @loginame varchar(256)
DECLARE linked_servers...
February 3, 2006 at 4:28 pm
Viewing 15 posts - 16 through 30 (of 74 total)