Viewing 15 posts - 1,171 through 1,185 (of 6,105 total)
Does any process recreate the view on a regular basis? You can check it by a query like the following:
SELECT NAME, create_date, modify_date
FROM sys.objects
WHERE NAME = '** View Name...
May 19, 2008 at 3:16 pm
Is the SQL Server 2005 server the exact same server as where you were running SQL Server 2000? In other words, did you do an in-place upgrade or did you...
May 19, 2008 at 3:11 pm
The port change only takes effect on a SQL Server restart. The value is actually stored in the registry and the SQL Server service only reads it when the service...
May 19, 2008 at 3:08 pm
If the case is it's not working from any remote host, that pinpoints it as a server problem. Take a look at the KB article cited earlier, it's probably the...
May 19, 2008 at 3:06 pm
Is the SQL Server on the same server as SMS?
May 19, 2008 at 3:03 pm
If the users are coming into the database as their Windows accounts, or if they know their SQL Server logins with respect to an application that uses them, the short...
May 19, 2008 at 3:01 pm
If you're on a cluster, you must first determine which physical node is hosting the virtual node. Then run it on that physical node.
May 17, 2008 at 5:55 pm
As long as the schema owners are the same, you're in good shape. That's what is actually used to determine cross-database ownership chaining in SQL Server 2005.
May 17, 2008 at 5:54 pm
I apologize, I was out of pocket for most of the week.
Here's what should work.
- Ensure the database owner for DISA and DISB are the same.
- Activate cross-database ownership chaining...
May 17, 2008 at 12:57 pm
As asked, have you tested a remote connection form another source other than your desktop? The problem could be either at the server or at your desktop. Testing from another...
May 17, 2008 at 9:45 am
Use of sa is strongly cautioned against because it doesn't undergo any security checks. So if you have someone connecting as sa, there's not anything you can do to stop...
May 17, 2008 at 9:32 am
Is the security group a local group or a domain group?
May 17, 2008 at 9:25 am
Giving it admin rights doesn't fix a bad username or password, so I would recommend against that. I know you probably have already, but re-check the keyed in username as...
May 17, 2008 at 9:23 am
When you change the port and then stop and restart SQL Server, bring up a command prompt and run the following command:
netstat -ano
Look to see if you have something listening...
May 17, 2008 at 9:19 am
In SQL Server 2000, anyone with sysadmin rights can decrypt an encrypted stored procedure at any time. Depending on the length, someone with db_ddladmin could pull it off, too, with...
May 17, 2008 at 9:14 am
Viewing 15 posts - 1,171 through 1,185 (of 6,105 total)