Viewing 15 posts - 1,756 through 1,770 (of 5,103 total)
try creating an alias in the local SQL Server that points to the actual machine name. Then use the alias as the server name of the linked server.
September 4, 2007 at 4:19 pm
September 4, 2007 at 4:16 pm
You could probably could look into sql server "functions" used as parameterized views.
September 4, 2007 at 4:04 pm
At my place: http://www.nagios.org/ is King but "MOM" will probably replace it in the long run.
September 4, 2007 at 3:59 pm
... I'm not getting the option in the GUI to view the reports
You must have SP2 on the CLIENT tool too ![]()
...
September 4, 2007 at 3:56 pm
you are likely experiencing "blocking". Run a trace ( or sp_blocker script) to detect those and figure out what is the root cause
September 4, 2007 at 3:54 pm
>>> So I did it manually by grant select on [schema]. to the user, but would this only give them access to that one object? <<
Yes ... as long as...
September 4, 2007 at 3:50 pm
if the SQL Server logins already exists on the destination server you should use
sp_change_users_login 'Report' to verify which are orphaned
and sp_change_users_login 'UPDATE_ONE', 'user','user' to remap to
September 4, 2007 at 3:46 pm
M$ has always been very careful not to maintain such thing. Sorry for the bad news.
August 30, 2007 at 1:54 pm
CREATE TABLE xxxx(
Name varchar(20), Amount int
)
INSERT INTO xxxx (name, Amount) Values ('A', 15000)
INSERT INTO xxxx (name, Amount) Values ('A', 15000)
INSERT INTO xxxx (name, Amount) Values ('A', 15000)
INSERT INTO xxxx...
August 30, 2007 at 12:26 pm
This is a very old problem in which politics are always involved. For "normal" day-to-day opearations you *don't* need admin rights. The problem ( in my experience ) comes when...
August 30, 2007 at 12:13 pm
can you post DDL of your sample table.
The only thing needed is an after trigger which fires on inserts and updates.
August 30, 2007 at 12:07 pm
for these situations I would use only scripts, not just UI.
August 30, 2007 at 12:05 pm
A word of advice: if performance is important you may want to rethink this solution.
August 29, 2007 at 3:50 pm
Viewing 15 posts - 1,756 through 1,770 (of 5,103 total)