Viewing 14 posts - 16 through 29 (of 29 total)
First off, I know that there are some known memory leak problems in certain circumstances with sql server that may be fixed in sp3 or 4(I have not applied 4...
May 2, 2002 at 10:09 am
I bcp out my data into text files, zip them and move them off the server. Then you can delete the data you want knowing that you could restore...
May 1, 2002 at 2:14 pm
First off, I looked it up and there is a way to script adding a role:
sp_addrole 'Professor'
GO
so to add to db_owner:
sp_addrolemember db_owner, jsmith
GO
Its better not to make everyone owner. ...
May 1, 2002 at 2:10 pm
db_owner has permission to do anything on a table while the public role has no permissions untill you assign them. You can create a role and assign permission to...
May 1, 2002 at 12:08 pm
Here is a link to the stored proc that microsoft recommends:
http://support.microsoft.com/default.aspx?scid=kb;en-us;Q251004
This is for sql 7 but there is a link to the proc for sql2k. I had...
April 30, 2002 at 8:38 am
One thing you can do is run sp_lock while your stored procedure is running. It gives you a time slice which may or may not be beneficial.
April 29, 2002 at 3:04 pm
Isn't there an issue with bcping passwords? Which master tables should I bring over? What if the databases on the new server will not match those on the...
April 17, 2002 at 1:34 pm
As I understand it sp_change_users_login is manual, so it would not save me much time over going into each user and granting them access to the db. Sounds like...
April 17, 2002 at 8:40 am
The only problem is that I am spanning my database across two drives and I am changing files and filegroup ect( I figure now is a good time to move...
April 16, 2002 at 2:34 pm
How can I post the showplan as an atatchment(it does not format correctly in this space)? Is that all you need to look at?
April 2, 2002 at 2:40 pm
There are numerous parameters in that article. Do you know which ones they changed in order to alleviate the problem?
April 2, 2002 at 9:14 am
the user can log out of citrix and their sql session is still there. They seem to have begin and end times(in sql) that are about 5 seconds apart....
April 1, 2002 at 11:16 am
sql 7 sp3. I think it may have something to do with citrix or a slow server as none of our other clients have this problem.
April 1, 2002 at 8:48 am
There is a product called sql programmer that is great. Kind of expensive though.
Here is a review, and where to get it:
March 29, 2002 at 3:14 pm
Viewing 14 posts - 16 through 29 (of 29 total)