Viewing 15 posts - 31 through 45 (of 147 total)
You can check a result set of the last time all statistics in a database by querying sys.stats with the STATS_DATE() function. And instead of using sp_msforeachtable why not just...
June 17, 2012 at 8:27 pm
For what it's worth, at least for me, the light bulb really comes on with XML and it's much easier to understand when you actually practice with it. Just my...
June 17, 2012 at 11:46 am
One way would be to just create a view and union the sum total to the bottom. Unfortunately I don't think you can utilize ROLLUP, as you aren't really...
June 16, 2012 at 8:02 am
Fun question, definitely have to read ALL of the answers. Thanks! 🙂
June 13, 2012 at 8:47 pm
If I'm understanding your question correctly, you can do this directly within SSMS:
1. Right-click on your database in Object Explorer
2. Click on Tasks -> Generate Scripts...
3. Keep "Script entire database...
June 13, 2012 at 8:24 pm
dbalorenzini (6/13/2012)
The Browser port was the show stopper.
🙂 I figured as much. Glad you got it all worked out. In the future, to see if the necessary ports...
June 13, 2012 at 8:09 pm
dbalorenzini (6/13/2012)
Finally got it working. The issue was the firewall. I followed the steps in the following Microsoft article:http://support.microsoft.com/kb/968872
Thanks for everybodies input.
That list in the KB article opens...
June 13, 2012 at 8:01 pm
Sounds like it could possibly be a DNS issue. What happens when you try to connect using the IP address as opposed to the server name?
June 13, 2012 at 7:48 pm
dbalorenzini (6/13/2012)
So is there anymore ideas. I am really stuck, any ideas will be appreciated.
Is port 1434 (UDP) open on the firewall? That's the port that the SQL Server...
June 13, 2012 at 7:46 pm
dbalorenzini (6/12/2012)
June 12, 2012 at 8:41 pm
There are a few things to check. Have you enabled the TCP/IP protocol for the instance? For a thorough walkthrough of possible issues, check out this blog post...
June 12, 2012 at 8:23 pm
If you want the database user to be able to have SELECT permissions, then they will still need to be a member of the db_datareader role. db_datawriter is not...
June 10, 2012 at 11:28 am
It sounds like this could be a good usage of SQLCLR[/url].
And you are sure that your design is solid with having the data-layer call a web service?
June 10, 2012 at 11:10 am
Out of curiousity, what does the following return?
select @@max_connections as max_connections;
And you say CPU isn't high. Is that the overall "_Total" CPU? If so, you could be skewing...
June 10, 2012 at 11:07 am
Viewing 15 posts - 31 through 45 (of 147 total)