Viewing 15 posts - 331 through 345 (of 518 total)
SELECT AVG(GOAL) FROM dbo.table
WHERE GOAL > 0
September 16, 2010 at 10:17 am
I'm pretty sure SQL Express doesn't have the SQL Agent, so it can't schedule automatic jobs..but I've never used it for anything, so I could be wrong.
September 16, 2010 at 10:15 am
drew.allen (9/16/2010)
Derrick Smith (9/16/2010)
r.rozeboom (9/16/2010)
But can i do this with t-sql?
i think i forgot to say it has to be done on demand. not...
September 16, 2010 at 9:35 am
You could wrap the insert in a try-catch, and then it would at least continue on to the rest of the databases. Then insert the error into a logging table,...
September 16, 2010 at 9:10 am
I also disagree with this - completely unnecessary. Prefixing tables with 't' or 'tbl' and stored procs with 'sp'..sure. Columns by their definition are already inside the context of the...
September 16, 2010 at 9:06 am
r.rozeboom (9/16/2010)
But can i do this with t-sql?
i think i forgot to say it has to be done on demand. not so on surten...
September 16, 2010 at 8:50 am
Have you tried stopping and restarting the subscription?
September 16, 2010 at 8:46 am
When you say SQL Server Monitor..do you mean the Listener? As in the port it uses for incoming connections? The only Monitor I know of would be a replication or...
September 16, 2010 at 8:05 am
Sounds like the account you're running SQL or SSMS under doesn't have appropriate permissions.
Out of curiosity, if you change SQL to run as a local administrator account, does it work?
September 16, 2010 at 8:01 am
You need to change the way you're looking at this. Databases don't perform slow - queries do.
This could be due to a multitude of reasons..database contention, memory/cpu pressure, IO contention,...
September 16, 2010 at 7:55 am
DCPeterson (9/16/2010)
September 16, 2010 at 7:26 am
Bhuvnesh (9/15/2010)
Derrick Smith (9/15/2010)
Bhuvnesh (9/15/2010)
Derrick Smith (9/15/2010)
It shows that the indexes are not fragmented.I am sorry , but which value showed it ?
Well DBCC SHOWCONTIG isn't really the best...
September 15, 2010 at 10:27 pm
Bhuvnesh (9/15/2010)
Derrick Smith (9/15/2010)
It shows that the indexes are not fragmented.I am sorry , but which value showed it ?
Well DBCC SHOWCONTIG isn't really the best tool to use...
September 15, 2010 at 9:38 pm
Bhuvnesh (9/15/2010)
Derrick Smith (9/15/2010)
statistics/indexes are just the most likely culprits here.
But the above DBCC results show that table is not fragmented and statistics are also updated ( from scan density...
September 15, 2010 at 9:29 pm
Lowell (9/15/2010)
September 15, 2010 at 2:41 pm
Viewing 15 posts - 331 through 345 (of 518 total)