Viewing 15 posts - 1,066 through 1,080 (of 1,253 total)
Hi
Which option(s) did u use in your alter index statement.
Try doing a DBCC Indexdefrag or if u can do DBCC DBReindex. DBReindex can be done using REBUILD option in Alter...
"Keep Trying"
October 18, 2007 at 4:22 am
Hi
Has there been any addition/modification/deletion of data ?
"Keep Trying"
October 17, 2007 at 2:42 am
Hi
Yes be default SQL sets the Pkey as a clustered index.
This need not necessarily be the best index for you.
Study how the data in the table will be used...
"Keep Trying"
October 12, 2007 at 12:10 am
Hi
Use different tables and then enforce referential integrity.
"Keep Trying"
October 12, 2007 at 12:07 am
Hi
See if this helps you.
declare @empskill VARCHAR(100)
set @empskill = ''
SELECT @empskill = @empskill + Skill level from table
where emp_id = 2541
select distinct emp_id,@empskill ...
"Keep Trying"
October 12, 2007 at 12:02 am
Hi
If your table name is unique in a server you can use objectname filter.
"Keep Trying"
October 11, 2007 at 11:07 pm
you do have instead of triggers in sql 2000.
"Keep Trying"
October 11, 2007 at 4:52 am
Hi
Could tell the problems you faced when you ,emtiom you failed to do this.
In SQL 2000 you can use partioned views to do partioning.
In SQL 2005 you can partion a...
"Keep Trying"
October 11, 2007 at 3:25 am
Hi
can we do a attach db here ?
"Keep Trying"
October 10, 2007 at 4:12 am
Hi
sys.dm_exec_sessions requires VIEW SERVER STATE permission on server.
"Keep Trying"
October 10, 2007 at 4:10 am
Hi
What would be the size (approx) of the db that you plan to create daily ?
"Keep Trying"
October 10, 2007 at 4:05 am
Hi
Peters script will work, but if you find it confusing try this. create a temp table or table data type and populate that with data that you want. Finally...
"Keep Trying"
October 10, 2007 at 2:36 am
Hi
Stored procedures do have performance advantage over code written at client side. SP code resides in the server and is pre-compiled.
"Keep Trying"
October 9, 2007 at 5:56 am
hi
You can do this with SSMS. Right click on the db and select Properties. In the Options tab set the Restrict access to SINGLE_USER.
"Keep Trying"
October 9, 2007 at 12:24 am
Viewing 15 posts - 1,066 through 1,080 (of 1,253 total)