Viewing 15 posts - 466 through 480 (of 2,008 total)
Latches are momentarily. If you run rebuild index you might not get it again. If you get this error frequently, you should concentrate on disk I/O.
January 2, 2012 at 1:34 am
It also depends upon your DEV Environment (your organization). Sometime projects timelines do not allow borrowing expert resources from free pool or different projects so Management continue with ‘One Man...
January 2, 2012 at 1:25 am
Are you populating error file? It will give you some hint on the reason.
BULK INSERT
[ database_name . [ schema_name ] . | schema_name . ] [...
January 2, 2012 at 1:12 am
Please don’t create multiple threads for one problem.
http://www.sqlservercentral.com/Forums/Topic1228778-357-1.aspx
January 2, 2012 at 12:01 am
It’s not a limitation. You are not setting the row terminator properly & that’s why missing few rows (or some workaround).
Try “*r*n” (or “,*r*n”) as row terminator. It should work...
January 1, 2012 at 11:58 pm
GilaMonster (1/1/2012)
The other way is dynamic SQL. That requires explicit permissions on the objects referred within (which is...
January 1, 2012 at 11:36 pm
May be bad Registry Entries or faulty installation. BTW you can access BOL if you have internet connectivity...
January 1, 2012 at 11:02 pm
Try following commands on Test Server... Once satisfied move it PROD.
ALTER PARTITION FUNCTION [pfTBLTRANS_ID]()
SPLIT RANGE (11000000) -- New Range
GO
ALTER PARTITION SCHEME [psTBLTRANS_ID]
NEXT USED [ filegroup_name ] [ ;...
January 1, 2012 at 2:29 am
Updates...
Controversial anti-piracy bill nears House approval: Why you should care
December 31, 2011 at 5:31 am
ESAT ERKEC (12/31/2011)
I can set this tables index fill factor 80 to 95 in 2012 I gain...
December 31, 2011 at 5:17 am
SQL Server doesn't have before triggers...
CREATE TRIGGER [ schema_name . ]trigger_name
ON { table | view }
[ WITH <dml_trigger_option> [ ,...n ] ]
{ FOR | AFTER | INSTEAD OF...
December 31, 2011 at 4:49 am
A friend asks his friend for a cigarette. His friend says, "I think you made a New Year resolution to quit smoking".
The man says, " I am in the...
December 31, 2011 at 4:45 am
David has good point but I suspect something else.
When you say SQL run slow, you might be referring to time taken to render the page (on web) or window (on...
December 31, 2011 at 3:56 am
amitsingh308 (12/31/2011)
Select
Case when datename (dw, getdate())='Monday' then Monday else
case when datename (dw, getdate())='Tuesday' then Tuesday else
case when datename (dw, getdate())='Wednesday' then Wednesday else
case...
December 31, 2011 at 2:35 am
Viewing 15 posts - 466 through 480 (of 2,008 total)