Viewing 15 posts - 6,256 through 6,270 (of 6,678 total)
Check the SQL Browser service and make sure it is running. This is required to be running when you have a named instance.
If you don't want the SQL Browser...
July 31, 2008 at 10:40 am
Your database are set to full recovery and require frequent transaction log backups to clear the log file. If you don't need to be in full recovery model, switch...
July 31, 2008 at 10:37 am
You were really close, review the following:
select dateadd(quarter, datediff(quarter, 0, getdate()) - 0, 0)
,dateadd(quarter, datediff(quarter, 0, getdate()) - 1, 0)
...
July 31, 2008 at 10:32 am
Verify the connection strings for the web application are using the SQL Server Virtual IP. My guess is that they are connecting directly to the node itself.
July 31, 2008 at 10:21 am
a_sood (7/31/2008)
I have a customer who is currently running WIndows Server 2003 Standard with SQL 200 Std and is haveing memory issue. He is planning to upgrade to Windows...
July 31, 2008 at 10:19 am
Glad I could help and you are up and running. The SQL Browser is required when you have named instances to identify the dynamic port that instance is running...
July 31, 2008 at 10:07 am
Matthew O'Gorman (7/30/2008)
July 30, 2008 at 4:04 pm
Angelindiego (7/30/2008)
July 30, 2008 at 3:55 pm
Are you trying to create this from the designer, or from a query window. If from the designer - yes, you will get a timeout.
To avoid the timeout -...
July 30, 2008 at 3:49 pm
GSquared (7/30/2008)
I hadn't realized that BOL says, "EXCEPT returns any distinct values from the left query that are not also found on...
July 30, 2008 at 3:33 pm
Is the SQL Browser service running on the server? If not, try starting it and see if you can connect.
July 30, 2008 at 3:26 pm
Angelindiego (7/30/2008)
what I need is data that I am pulling straight from the table and then based on 2 parameters data about the location. they will pass...
July 30, 2008 at 3:18 pm
Just a WAG - but have you tried cycling SQL Server Agent? If not, try that and see if it has any affect.
July 30, 2008 at 3:13 pm
The drop-down does not automatically search the network (or your local system) for all SQL Servers that are available. You can either select the browse for more option -...
July 29, 2008 at 9:42 pm
First, shrinking the database and/or the transaction log is a bad idea. Performing this nightly is even worse, as it is going to cause file level fragmentation and will...
July 29, 2008 at 8:49 pm
Viewing 15 posts - 6,256 through 6,270 (of 6,678 total)