Viewing 15 posts - 3,031 through 3,045 (of 5,843 total)
rvasanth (2/26/2012)
I am not exactly showing it in the screen.I just selecting and moving to temp table and doing further processing. Sometime, i export it to a textfile.
Do an...
February 28, 2012 at 10:20 am
1) don't shrink the tlogs - they are VERY likely to grow back up again, leading to OS disk file fragmentation
2) logs won't necessarily shrink when you force it due...
February 28, 2012 at 10:15 am
Oh, I would imagine the reason you don't see/hear much about this type of thing is that high-end companies almost always tie the hands of their consultants with NDAs that...
February 25, 2012 at 11:12 am
patrickmcginnis59 (2/25/2012)
TheSQLGuru (2/25/2012)
February 25, 2012 at 11:01 am
The scenarios I was speaking of is cases where massive IO stalls let to queries doing things like PAGEIOLATCH_xx waits - and thus not actually doing useful work. That...
February 25, 2012 at 7:29 am
Also check the user SET options under which each connection executed their query. That can have an effect. Outside of that, and assuming you didn't get the execution...
February 24, 2012 at 6:21 am
GilaMonster (2/23/2012)
February 24, 2012 at 6:18 am
GuruGPrasad (2/21/2012)
ALTER TRIGGER [Inventory].[purchase_order_detail_FillUser]
ON [Inventory].[purchase_order_detail] AFTER INSERT
AS
SET NOCOUNT ON;
Declare @TransDetail_Id Int
Select @TransDetail_Id=purchase_order_detail_id...
February 23, 2012 at 7:46 am
Engr Shafiq (2/21/2012)
But there is issue like when some one is updating middle record?for example max id is 10 but i want to edit id=5 then this query l not...
February 23, 2012 at 7:42 am
1) GUIDs have many VERY bad downsides for performance
2) Partitioning is a VERY advanced and complex topic. PLEASE do yourself and your company a favor and don't just read...
February 23, 2012 at 7:41 am
suresh0534 (2/6/2012)
Because, my sql server data base slow.user's...
February 23, 2012 at 7:37 am
Let me guess - someone got happy (probably multiple times) with the DTA?? 🙂
This sounds like my typical client. I love going to places like this because there are...
February 22, 2012 at 8:46 am
This particular one is easy:
UPDATE ABCSET x= @x
WHERE ID= (SELECT MAX(ID) FROM ABC)
There are MUCH more difficult scenarios where concurrency will get you. Note this example assumes that...
February 21, 2012 at 7:04 am
Engr Shafiq (2/20/2012)
Jeff Moden (11/30/2011)
February 21, 2012 at 6:03 am
snapshot isolation as gail mentioned may be one help. I believe there is a traceflag to prevent lock escalation but that has some NASTY side-ffects. Best would be...
February 21, 2012 at 5:59 am
Viewing 15 posts - 3,031 through 3,045 (of 5,843 total)