Hello All,
Greetings,
We have converted our Backend from pervasive to SQL 2005.
We are using clarion as front end, currently we are facing performance
issue. i ran profiler and found that clarion using sp_prepexec extended
stored procedure to fetch data. sp_prepexec itself taking much t...
more >>
Hello there
I have server that i need to upgrate it for better performance
the application use the data is for 60% Data change and 40% data pool.
It is very important for the company avilability and performance:
Iim wondering what is the best, here is my platforms i'm thinking:
1. Set t...
more >>
Hello All,
I've been in the process of partitioning our ODS, we have one
table that is essentiall a junk dimension. It contains user defined
fields. After partitioning by month the inserts on this table have
slowed to a crawl. It does insert a substancial number of records into
this table...
more >>
Hello,
Thanks for reviewing my question. It simple. I would like to update a
column in my table with an increase number. How? I am trying to initialize
each row's SEQ column with 1, 2, 3, ... so I decided to use a row number.
UPDATE temp_TEAMS
SET SEQUENCE = ROW_NUMBER() OVER ( ORDE...
more >>
I want to create a moving average, current quantity in stock and current
balance amount of an Inventory Application. In Sql Server 2005, can I do
this without Iterations, using Common Table Expression.
For example:
My Table as following fields.
SNo,Item Code,Qty, Rate, Amount
Sno Item ...
more >>