Viewing 15 posts - 30,976 through 30,990 (of 39,754 total)
You can't use a text variable, but you could try breaking this up. Maybe going with the top 100, then looping through successive groups of 100.
However, I don't understand what...
October 10, 2007 at 7:46 am
Doh, I thought I corrected those typos. Must not have saved it in my ID -10-T moment :w00t:
October 10, 2007 at 7:43 am
This is a known issue and you need to create a job to run 7.0 compatible databases.
I'm not sure why, but this was a design decision to not handle 7.0...
October 10, 2007 at 7:39 am
It's hard to know. The application could support multiple names, there could be caching, etc.
I'd probably schedule this for a slow time or off hours. Change the name and try...
October 10, 2007 at 7:19 am
You shouldn't change max worker threads.
Do you mean 1000 people querying the server at the same time or 1000 connections? Both are possible, just depends on the server, app, queries,...
October 9, 2007 at 5:56 pm
Tend to agree with what Steven posted. Go Dual-core and 2GB. Big HDD or if not, an external for backing up. Decent sized USB ones are $100-150.
October 9, 2007 at 5:51 pm
First I'd drop this in the T-SQL discussion (moved).
Second, are you getting the average like this?
select ip, avg(time)
from mytable
group by ip
If so, you can wrap that.
select avg(a.ipavg)
from
...
October 9, 2007 at 5:49 pm
You probably need some sort of password recovery tool for the DBF files if you don't have the password. This wouldn't have anything to do with DTS.
This might help.
October 9, 2007 at 5:45 pm
First, please post in the appropriate forum. Every forum name is above the threads.
Second you likely have objects that are in another schema or the user does not have permissions...
October 9, 2007 at 4:35 pm
Couple things. First, what version? Second, what's NMS?, third, please post in the appropriate forum. I'm moving to SQL 2005, Performance.
For monitoring, I just do the basics for a baseline....
October 9, 2007 at 4:31 pm
DO NOT DO THIS.
Using a column for more than one value is bad, bad design. It makes it hard to write queries, violates normal form, can't do RI, etc.
Better off...
October 9, 2007 at 4:27 pm
If it's production, they shouldn't create test databases. If they need to copy over the production database for testing, create them a database, and let them have rights to restore...
October 9, 2007 at 4:23 pm
EM is a client side tool, so it EM freezing on your workstation or on any/all workstations?
Are you rebooting your machine or the server? I can see the logs taking...
October 9, 2007 at 4:03 pm
I don't believe that the script is what is executing for the file copy. It's still the SQL Agent service that's running. The EXECUTE AS is a SQL command for...
October 9, 2007 at 3:56 pm
Sent a note to a few people over at MS.
For a workaround, there are bunches of scripts here on the site that do backups of all databases.
October 9, 2007 at 3:51 pm
Viewing 15 posts - 30,976 through 30,990 (of 39,754 total)