Viewing 15 posts - 121 through 135 (of 1,252 total)
I dont think you can restrict somebody from seeing the names of databases. Is there any harm in that?
You can create a development database for the developer on another server...
October 20, 2009 at 1:52 am
Skeeve , First What i have understood.
The same database when is restored in SQL 2008 and in MSDE 2000. The same query runs fine in SQL 2008 but not...
October 20, 2009 at 1:34 am
I faced a similar problem in the recent past. Mine was most probably due to disk corruption cant say for sure. I tried everything that you have listed and it...
October 20, 2009 at 1:21 am
There are 2 things that you can do.
One is to restore the full backup on another server and then import the data to your database from the restored backup.
The...
October 20, 2009 at 1:14 am
My 2 cents...
Using a smart script will definitely reduce the problem but may not completely solve it. Certain indexes will still be fragmented and require a index rebuild. This...
October 18, 2009 at 11:08 pm
one more difference
in your dynamic query its Where Address like ''%'' + @Address + ''%'' where as in your procedure it is
WHERE Address like '%' + @Address
October 16, 2009 at 3:33 am
Can u give us the details why you need to do this. It may help us to give you better answers.
Edit - How about using views.
October 16, 2009 at 3:23 am
Nice question, but i agree with diamondgm. The average calculation need not be the same as you pointed out.
October 16, 2009 at 12:36 am
Sorry but am feeling a bit strong about this
From Bob Hovious signature
Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
October 14, 2009 at 11:55 pm
SELECT TOP 1 AccountID, NewAccountId from #a
ORDER BY CASE WHEN CAST((RAND() * 10) AS INT)%2 = 0 THEN AccountID ELSE NewAccountId END ASC
Using newid() method is more...
October 14, 2009 at 11:49 pm
You need to find out when and where the deadlocks are occuring . Run a trace or use DMV's to get dead lock information.
October 14, 2009 at 11:00 pm
My 2 cents... I could be entirely wrong :ermm:
Reindex organizes the pages but does not release the space on the files back to OS. So your file size...
October 14, 2009 at 10:56 pm
Viewing 15 posts - 121 through 135 (of 1,252 total)