Viewing 15 posts - 76 through 90 (of 1,252 total)
F-Keys might be the reason.
BTW how did you find out there were large number of reads?
December 23, 2009 at 4:58 am
Cannot grant, deny, or revoke permissions to sa, dbo, entity owner, information_schema, sys, or yourself.
Think this is self explanatory. What are u logging in as while doing this ?
December 21, 2009 at 2:37 am
You can try server side tracing. Create traces that write to a file and be as specific as you can (mentioned in previous post).
one article i can point out is...
December 17, 2009 at 12:38 am
"Dropping a rebuilding a clustered index on a partition scheme will move disk to other drives." - Very confusing.
December 9, 2009 at 3:29 am
Grant
Does the default trace show delete statements?
December 4, 2009 at 2:47 am
nice article jacek!
December 3, 2009 at 4:34 am
Any particular reason why you are following such a design?
December 3, 2009 at 12:38 am
another simple way
Select * from
cow2008 c inner join cow2009 d
on c.cow_id = d.cow_id
WHERE c.cow_name <> d.cow_name.
You could also create a dynamic sql in which the where...
December 3, 2009 at 12:36 am
Read articles on various sites , look into different forums and learn from anywhere and everywhere.
Most importantly try out things on your own.
December 3, 2009 at 12:28 am
Hi
Just a suggestion...
What about a server side trace that tracks delete statements. You can filter out delete statements from application users.
December 3, 2009 at 12:09 am
avi-631555 (9/24/2009)
thers is somehting else i am struggling with While upsizing from access to SQL all the IsActive fields that are of...
December 2, 2009 at 11:49 pm
BULK Insert or BCP are specifically for importing lot of data into sql server. If you are using either of them inside a procedure you can create a job that...
December 2, 2009 at 11:21 pm
Hi
i tried this....
create table t2 (col1 float(8))
insert into t2 values (23423889777777)
select left(col1,8) from t2 - returns "2.34239e"
select left(cast(col1 as numeric(21,2)),8) from t2 - returns 23423889.
November 19, 2009 at 3:44 am
Viewing 15 posts - 76 through 90 (of 1,252 total)