Viewing 15 posts - 16 through 30 (of 71 total)
Nice topic...
I would suggest you an idea.. for this...
You can achieve by partitioning the data based on specific ID.. may be primary key....
Group that data in a specific file group...
August 15, 2008 at 6:59 pm
Nice topic.... Sorry for entering in the mid...
Wish to add my view..
For your scenario, dont go for dynamic sql ....
August 15, 2008 at 6:49 pm
Curious to know,
How you install the sql server instance?
Regards,
Venkatesan Prabu .J
August 15, 2008 at 6:44 pm
select * from xxxxflow f where
(mstr_ordid) = (select max(mstr_ordid) from xxxxflow b
where b.Ord_Num = f.Ord_Num
and convert(varchar(10),b.date,101) = convert(varchar(10),f.date_time,101)
)
some way to improve performance,
select (specify column name) from xxxxflow...
July 30, 2008 at 9:15 pm
Use your sql server cd to repair the problem
Venkatesan Prabu .J
July 30, 2008 at 5:10 am
File groups are used to enhance the performance and also domain wise you can group the tables like consider am having a company database. Here employee related information can be...
July 30, 2008 at 4:30 am
Just check my blog
http://venkattechnicalblog.blogspot.com/2008/07/rows-to-columns-in-sql-server.html
Venkatesan Prabu .J
July 30, 2008 at 4:28 am
Just try it out with ordinary or temporary table creation
Venkatesan Prabu .J
July 30, 2008 at 4:26 am
Getting a backup of the existing and restoring is the best procedure to achieve your task.
Venkatesan Prabu .J
July 30, 2008 at 4:23 am
Please check my blog for your reference,
http://venkattechnicalblog.blogspot.com/2008/07/collation-in-sql-server.html
Venkatesan Prabu .J
July 30, 2008 at 4:21 am
I have handled this kind of situation in my blog. Please look into it,
http://venkattechnicalblog.blogspot.com/2008/07/rows-to-columns-in-sql-server.html
Venkatesan Prabu . J
July 30, 2008 at 4:05 am
with little bit eager, I wish to ask one question,
How you applied this contraint on the column, Whether you have used check constraint,
name like ('[A-Z][a-z]{1,19}')
Please mail it to venkatesanj@hcl.in
July 27, 2008 at 2:29 am
Hope my article will get you to achieve the same,
http://venkattechnicalblog.blogspot.com/2008/07/rows-to-columns-in-sql-server.html
July 27, 2008 at 2:27 am
Nice to join with you all in answering this question,
Select field1,GroupKey from
(
select row_number() over (partition by GroupKey order by GroupKey) as rownumber , field1,GroupKey from @mytable
)tbl
where tbl.rownumber<=2
The above query...
July 27, 2008 at 2:24 am
You have missed out Stopping the server. 🙂
July 27, 2008 at 2:17 am
Viewing 15 posts - 16 through 30 (of 71 total)