Viewing 15 posts - 1,696 through 1,710 (of 5,103 total)
September 11, 2007 at 1:20 pm
Can you post a sample of the file contents ?
September 11, 2007 at 11:52 am
AND when doing "select *" you may be bringing more data than you intended if someone/somthind adds a column to the table(s) you are "select"ing from
Cheers,
September 11, 2007 at 11:47 am
check the fragmentation level of the indexes used in the queries and the statistics of the tables involved.
September 11, 2007 at 11:40 am
when creating the views you MUST specify an owner to get consistent ownership-chain.
Therefore you either type "dbo.viewname" when creating those or make the creator of the viwes the database owner...
September 11, 2007 at 11:38 am
Page level Locking is "ON" by default.
You should disable it only on *very rare* cases.
Nice SSMS BUG catch by the way !!!!
September 11, 2007 at 11:28 am
Dave,
I join your feeling. As far as I know there is no other way but dropping it and recreating it with NFR. I understand this is painfully done as...
September 11, 2007 at 8:37 am
exec sp_update_resume ![]()
September 11, 2007 at 8:33 am
| That gets the first record set, what about the 2nd? (I'm assuming this was the point of the... |
September 11, 2007 at 8:32 am
Merge has been present in DB2 for years, it is a good thing that MS is catching up. Personally I find it handy for cetain things but I am afraid...
September 11, 2007 at 7:56 am
you should also run UPDATE STATISTICS ...
September 7, 2007 at 4:11 pm
You could either user triggers or calculated columns. If your data is comming through bcp a calculated column maybe the way to go otherwise triggers are ok, if you...
September 7, 2007 at 4:08 pm
Viewing 15 posts - 1,696 through 1,710 (of 5,103 total)