Viewing 15 posts - 45,751 through 45,765 (of 49,571 total)
Could you explain a bit more what you want? I'm not sure I understand your question.
July 14, 2008 at 4:04 am
Is the SQL service running on that machine?
Have a look in the server's error log, see if there's anything in there of interest.
July 14, 2008 at 4:04 am
The total scores page will answer some of those for you
July 14, 2008 at 3:55 am
Have you enabled remote connections?
On the machine you can't connect to, run the surface area config and check that remote connections have been enabled.
When you run the Surface area...
July 14, 2008 at 3:51 am
TempDB is completely recreated every time SQL starts. What you're seeing is normal and expected.
If you want permission changes to persist through a restart, you'll have to set them on...
July 14, 2008 at 3:34 am
Hmmm....
Has the slow execution reoccured? Is it happening regularly?
As more general comments:
Why are you using dynamic SQL in one place? I can't see anything in there that would need...
July 14, 2008 at 3:31 am
There are some values in that column that cannot be converted to numeric. You're going to have to find those values and either remove them or exclude them from the...
July 14, 2008 at 2:16 am
Don't shrink your database. It causes massive index fragmentation and the DB will quite likely just grow again, possibly causing file-level fragmentation.
See - shrinking databases[/url]
Why do you want to shrink?
July 14, 2008 at 1:56 am
That's a compile time of 16 sec! That's a little extreme.
Do you have contention for your procedure cache? (Are you seeing blocking with a [compile] description)
If you check perfmon, what...
July 14, 2008 at 1:28 am
Parameterise all queries in your front end app. Do not concatenated together SQL statements and execute them.
Preferably, use stored procedures for data access only and do not allow the application...
July 14, 2008 at 1:21 am
The error message is getting cut off. You'll need the entire message before you can find a the cause
Go into the job step. On the advanced tab there will ba...
July 14, 2008 at 12:41 am
Have you looked at database snapshots? It seems to me that creating a snapshot may solve your problem.
They do have an IO load impact though.
July 14, 2008 at 12:30 am
ltoso (7/11/2008)
Hi,thanx for usefull information guys, the reason why i cannot disable the sa account because helm the web hosting control panel uses this account to create databases
That's a...
July 14, 2008 at 12:11 am
ltoso (7/11/2008)
Hican you guys tell me what will be the straight forward way to change the password for sa account through sql server management studio,
I already did.
You can rename...
July 14, 2008 at 12:05 am
Viewing 15 posts - 45,751 through 45,765 (of 49,571 total)