Viewing 15 posts - 331 through 345 (of 530 total)
Hello!
I guess changing a couple of INNER JOINS to LEFT JOINS (or making them subqueries) and removing the WHERE (dbo.analgroup.sys_analgroup IS NOT NULL) or moving it into a ON clause on...
June 17, 2005 at 9:47 am
Hehe. I'll be heading down to the pub to get my ice Seeing that it is end of the working week now
June 17, 2005 at 9:28 am
I guess it is a point of view. Not many things are security issues unless you explicitly make them to be security issues. Defining a Linked Server where all users are using 'sa' on the...
June 17, 2005 at 9:23 am
I'd say yes and no
If you increase the timeout it will probably succeed (but it will still take a long time) since the query...
June 17, 2005 at 9:16 am
Agree. Not possible.
You could go for the other approach, select from a view (or many) inside a Stored Procedure...
June 17, 2005 at 9:06 am
I agree with Remi Gregoire, your solution is great. Easy to make, quick to implement and if performance is not an issue...
June 17, 2005 at 9:01 am
Well, just to assess your timeout problem, it is very unlikely that it is because of sql server. I think it is your calling enviroment that is timing out... Try...
June 17, 2005 at 8:58 am
Why not make boring things easier?
Create a linked server and.. Tadaa! Do a EXEC YourServer.Master.dbo.sp_addrole 'MyRole'
You're welcome
June 17, 2005 at 7:17 am
Maybe I am bing abit of a party pooper but maybe Microsoft are not so happy about passing around unrelased and not for public use hotfixes...
//Hanslindgren
June 17, 2005 at 4:44 am
Right...
I'll do some testing... Thanx again!
P.S And if someone else have tried it and found any issues with changing this system table, please let us know!
June 17, 2005 at 4:42 am
Hello!
I would say one 'big' would do it ( though maybe that could internally call other SP to get modularization ) so you gain performance in eliminating unneeded server round...
June 17, 2005 at 4:40 am
Do you mean inside Enterprise Manager?
I havn't seen this problem before but maybe she does not have any SQL SPs installed and it helps if she applies SP4?
//Hanslindgren
June 17, 2005 at 4:34 am
June 17, 2005 at 4:31 am
I guess you could write your own?
Insert the result of sp_helprole into a tmptable and just do sp_addrole for every record (execpt the standard roles) on the new server...
//Hanslindgren
June 17, 2005 at 1:45 am
No, there is no easy way of doing that.
But if you want to do it more times you could consider doing it in a cursor loop then doing cut &...
June 17, 2005 at 1:38 am
Viewing 15 posts - 331 through 345 (of 530 total)