Viewing 15 posts - 136 through 150 (of 196 total)
GilaMonster (1/24/2013)
it's the snapshot isolation and the row version store.
I'm not familiar with this term but I'll try to learn a bit more about it and why it affects our...
January 24, 2013 at 7:32 am
Thank's for the answers and the link. I'll go trough it in detail.
Yes, we have snapshot isolation set to on. I can see that during reorganisaton of our largest table...
January 24, 2013 at 7:05 am
Thank's a lot. I already found this table but I did not realize that the one column contains the whole package. The hint of queries built at rune time is...
January 14, 2013 at 7:39 am
I cannot agree to that and in my opinion there is just one correct answer to this: it depends!
What do you call an "incredibly simple system"? How do you call...
January 14, 2013 at 12:43 am
You should do it another way. When normalizing the database there should be a table containg all available statusids. Your data table should then have a foreignn key to the...
January 13, 2013 at 2:46 am
A foreign key helps you keeping your data consistent. In your case the foreign key says that you can only insert ContactIds in table Contact13 if it already exists in...
January 11, 2013 at 7:14 am
This is a problem many people have. In the german language the decimal separator is a comma too. When having the english database system all decimal separators are returned with...
January 7, 2013 at 1:03 pm
"take long" is quite relative. In the enviroment I know we lose data if a table is locked for more than 30 seconds. As far as I have seen the...
January 7, 2013 at 12:32 pm
hi there,
I think you are one of thousands having this problem. I personally still don't know any easy solution to this. I personally work with a third solution: copy the...
January 7, 2013 at 12:25 pm
michael.newman560 (1/5/2013)
January 5, 2013 at 9:08 am
CELKO (1/4/2013)
...
If you want to keep an audit, then use an external tool for it.
...
Why using an external tool? There is an audit function within SQLServer too. It works...
January 5, 2013 at 7:57 am
hi Mike,
you try to do it the wrong way. You should not try to modify your SQL-Code from outside. You can define input parameters in SQL-Procedures too.
ALTER PROCEDURE dbo.DateRange
...
January 5, 2013 at 7:44 am
you just need to replace the select-command with an delete-command, followed by the table to delete the data from. Then remove the order-by-clause and that's it.
delete from dbo.BC_ShiftSummaryInfo
from dbo.BC_ShiftSummaryInfo A
Join...
January 1, 2013 at 2:31 am
of course you can. Depends on what property or configuration you actually want to change.
Just to name an example, have a look at "sp_configure".
Changing the name of a sqlserver can...
December 31, 2012 at 10:27 am
U.T (12/31/2012)
Can anyone point out what is wrong with following query...I am getting zero records for Domestic while there is data in the table.
....
I forgot this question:
you don't get...
December 31, 2012 at 10:25 am
Viewing 15 posts - 136 through 150 (of 196 total)