Viewing 15 posts - 781 through 795 (of 1,253 total)
Adding along to the list..
Check the health of your db by running dbcc check db. Or you can schedule the same by creating a maintenance plan.
April 30, 2008 at 5:09 am
Experts correct me if iam wromg
when OR is used sql server finds it difficult to use the right index , mostly it does a table scan. This can bring down...
April 30, 2008 at 2:43 am
Hi
How about specifying column names in the insert as well as select clause
ex:- insert into table1 (col1,col2)
select col1,col2 from table2.
April 30, 2008 at 2:35 am
Hi
I dont think the trigger will be enabled when sql server service is restarted.
April 30, 2008 at 2:32 am
Thats a neat trick Ian. Where did you get it from ?
April 29, 2008 at 11:26 pm
Hi
What about using a Left join instead of "OR". This will have a better execution plan.
April 29, 2008 at 11:23 pm
April 29, 2008 at 2:48 am
For starters...
specify the column names instead of "*".
SELECT column1 ,COUNT(column1) AS expr1
FROM (SELECT column1 FROM table1...
April 29, 2008 at 12:07 am
That looks like a nice suggestion. you can aggregate on another column and then join it with your table to get the image column. But you need another column to...
April 29, 2008 at 12:01 am
Hi
Is TvsRecordID a primary key or a identity column.
Can you group by any other column.
Pls post the table structure and sample data and let us see.
April 28, 2008 at 5:24 am
Yes like others have said use 2 schemas in the same database. Having 2 diff databases would complicate things and also bring down performance .
April 28, 2008 at 2:59 am
Hi
Whats it that you want to know
April 28, 2008 at 2:57 am
Hi
you can do the same from SSMS. Check out "Moving tables" in BOL.
April 28, 2008 at 2:20 am
Hi
How will the table be updated . Open the table and make the modifications , thru ad-hoc sql queries or thru stored procedures ?
April 28, 2008 at 2:04 am
Viewing 15 posts - 781 through 795 (of 1,253 total)