Viewing 15 posts - 61 through 75 (of 254 total)
There is not big difference between 2005 and 2008, however there is very huge difference between 2000 and 2005.
Besides, 2008 is still very raw. So learning 2005 is good enough...
January 11, 2008 at 11:06 am
For me, goals for this year would be learning and improving my skills in:
1. BI
2. Replication
3. C#
4. CLR procedures.
Besides, finish the migration of company legacy databases (19 in total) to...
January 10, 2008 at 11:57 am
I have seen even longer lists, but it does not mean that they want them ALL. Put Or between the lines, not AND.
If you posess about 7 out of...
January 10, 2008 at 11:44 am
Many companies have too loose definitions for DBA role. I've been on some interviews where all they wanted from a "DBA" is to write stored procedures and stuff like that....
December 26, 2007 at 11:54 am
I checked in our system ecid is always returning 0. What is CreateDate, is it date and time when your script is runnning every 10 min ? If so, it...
December 14, 2007 at 10:18 am
Maybe this:
select
name,
create_date,
modify_date
from sys.views
will help you to figure out what has happened to the view
December 7, 2007 at 11:36 am
Did you update statistics on all tables / indexes after migration ?
November 9, 2007 at 11:40 am
I did not quite understand "...in which transaction...", but SQL Srever default isolation level is READ COMMITED.
November 9, 2007 at 10:12 am
Answering your second question: They renamed bookmarks to joins in 2005, but essensially it's same thing.
About your execution time: did you compare the number of records, availability if indexes,...
November 7, 2007 at 10:17 am
Thanks for your inputs.
This is really odd. I tried to run both CONTAINS and CONTAINSTABLE, it took the same 45 sec. But after I cleaned my buffer cache with DBCC...
November 5, 2007 at 2:53 pm
Try this:
SELECT *
FROM your_table
TABLESAMPLE SYSTEM (1 PERCENT) ;
November 2, 2007 at 11:24 am
Get execution plan for each of them. Compare them. If execution plans are very different, check when statistic was last updated for all indexes for all these tables. If not...
November 2, 2007 at 11:17 am
Yes, I am also trying to create a dynamic function, but how to return the value from dynamic execution to a variable which is "non-dynamic", declared in the functiuon, not...
November 1, 2007 at 1:51 pm
Thanks Grant, this is smart trick.
October 30, 2007 at 12:12 pm
Put batch separator GO after dropping the second temp table, it ensures that the temp tables are dropped prior to executing your DML statements.
If you don't separate them, they are...
October 29, 2007 at 12:20 pm
Viewing 15 posts - 61 through 75 (of 254 total)