Viewing 15 posts - 811 through 825 (of 1,170 total)
It could be the text-xml is not a valid xml. Try to copy your text XML over to a temp table (column defined as text) and attempt to cast it...
November 18, 2013 at 9:05 am
I want to add that delete operations usually introduce a lot of fragmentation, so you should do something to reduce it.
Anyway, I think marking logically deleted records, and then later...
November 18, 2013 at 6:43 am
Adi Cohn-120898 (11/18/2013)
November 18, 2013 at 6:40 am
1) If you can rebuild your primary non-clustered key to a clustered key, then it'll be better.
If you decide this, then you can do that with ALLOW_ROW_LOCKS = OFF and...
November 15, 2013 at 10:19 am
Hi
Is there a clustered index on the table?
Are there any constraints?
You'd better post the table definition with all the constraints...
Regards
IgorMi
November 15, 2013 at 5:45 am
The select I caught via the profiler for Indexes usage statistcs is the following:
Select
(dense_rank() over (order by s.name,t.name))%2 as l1
, (dense_rank() over (order by...
November 15, 2013 at 4:18 am
In the profiler (Trace properties), check the "Show all columns" and you'll see in the extended columns DatabaseID and DatabaseName. Using them with the filter you can include the desired...
November 15, 2013 at 2:27 am
Lynn Pettis (11/14/2013)
Sean Lange (11/14/2013)
IgorMi (11/14/2013)
By specifying identity(1,1) primary key, you already have clustered primary key. For the property...
November 14, 2013 at 3:50 pm
You question is not very clear, but guess what you're asking...
By specifying identity(1,1) primary key, you already have clustered primary key. For the property identity(1,1) there is no need...
November 14, 2013 at 3:02 pm
Thank you both!
I know that usage of hints should be avoided as much as possible. My thoughts were if in case the stats got out of date the option with...
November 14, 2013 at 12:46 pm
If i call this function in a queryafter sometime (around 12 hours or some hours) then it takes 1 minutes to fetch 250 data records .. but if i run...
November 8, 2013 at 2:07 am
Hi All,
Just to inform on this topic. I must have de-installed the sql 2012 RS instance, and then re-create the report sql2008r2 databases in order to run the sql2008r2 RS.
Regards,
IgorMi
November 4, 2013 at 10:29 am
Hi
In ssms right click on your database then choose [Tasks] and then [Generate scripts...] will open a window which will lead you to the goal.
Regards,
IgorMi
November 1, 2013 at 2:29 am
Viewing 15 posts - 811 through 825 (of 1,170 total)