Viewing 15 posts - 91 through 105 (of 462 total)
By accessing external ressources out of trigger will hold open that specific transaction until the triggers finishes. If an another transaction will try to insert a new record the table...
July 15, 2005 at 2:02 am
Even the maintenance plan is doing a kind of cursor.
Anyhow you cann't make a reindex without any cursor. Of cours you can generate a script in one shot (what I'm...
July 15, 2005 at 1:35 am
You should set the cluster size to the extent size (8 pages = 64K) because AFAIK SQLServer is reading at least an extent from the disk. But the cluster size should...
July 14, 2005 at 8:56 am
What about this?:
exec master..sp_MSforeachtable 'dbcc dbreindex ("?")'
July 14, 2005 at 8:53 am
in a stored proc you have to use scope_identity()
See SCOPE_IDENTITY in BOL with a goodd explanantion
July 14, 2005 at 8:41 am
No We didn't tried out Tarantella. But what do you think about pure MS based Terminal Service solution. We are using it because of our security requirements and also remote...
July 14, 2005 at 8:14 am
Citrix is simply too expensive.
You have to by the whole MS Terminal server infrastructure, then again the "same" (I know it is not the same but anyway...) from Citrix.
We have...
July 14, 2005 at 1:17 am
You cannot switch off the cache.
But what you can do is you can clean up the cache between eauch consequent SP run by using:
DBCC DROPCLEANBUFFERS and DBCC FREEPROCCACHE
July 13, 2005 at 4:21 am
you can check this site for numerous pivot table scripts threads and articles.
Those could answer your question
July 13, 2005 at 4:14 am
An another way is to use SQL Server Agent to run sp_who or sp_who2 every 20'. you can collect the data then analyse it.
There is one drawback: neither sp_who nor...
July 13, 2005 at 3:43 am
Simply:
=NULL will only work if you have set explicitly the value NULL to your column
is null will always work because it checks for value NULL (explicitly set, "nothing", not...
July 13, 2005 at 1:46 am
Why you are not using a temp table corresponding to the structure of your Sybase data? So you could import the data from Sybase (via bcp, DTS...) into the temp...
July 12, 2005 at 1:57 am
Inside Microsoft SQLServer 2000 by Kalen Delaney.
Excelent book not for beginners
July 12, 2005 at 1:52 am
Also you can have some books. This is one of my favorit Inside MS SQLServer by Kalen Delaney. But that one is not really for the beginner.
July 12, 2005 at 1:49 am
Viewing 15 posts - 91 through 105 (of 462 total)