Viewing 15 posts - 48,661 through 48,675 (of 49,571 total)
Partitioned tables don't need any specific scolumn types in them. The common example is to partition on a datetime column (ann rows between 1 jan 2005 to 31 dec 2005...
May 28, 2007 at 5:06 am
I have a client with SQL 2000 SP4 on his Small Business Server 2003.
From what I read, the real server is full SQL. MSDE was used as a test by...
May 28, 2007 at 12:05 am
Can I run the DBCC DBREINDEX commands on a database that's in use? I found an article on the web that says go ahead, and another that warns NEVER to...
May 28, 2007 at 12:03 am
There is no object 0. If a page is allocated to object 0, it means that it is an unowned (empty) page. It sounds like there may be some chain...
May 25, 2007 at 7:20 am
At the archery range
Lounging in bed reading a good book
Playing computer games (I'm replaying starcraft in anticipation of starcraft 2)
Dinner with friends.
May 25, 2007 at 4:29 am
To find out what a proc is waiting on, open another query analyser/management studio window and run
SELECT spid, waittime, lastwaittype from master..sysprocesses
You'll have to look through the processes to find...
May 25, 2007 at 4:25 am
I would highly recomend that you get the following removed from the mainenance plans.
Remove unused space from database files (shrink db when it grows beyond 50MB, free space after shrink:...
May 25, 2007 at 1:57 am
Ah. In that case, I would suggest remove all schemas other than dbo and make sure that all users have the dbo default schema. That should remove any possibility for...
May 25, 2007 at 1:39 am
Are you using SQL 2000 or SQL 2005? If you are using 2000, post in the 2000 forums. If you are using 2005, please post in the 2005 forums.
Most of...
May 25, 2007 at 1:28 am
Could you pos the proc please?
Things to check - how much space is free in the DB? If it has to grow to accomodate the data, you will get slow...
May 25, 2007 at 1:20 am
Dunno about the problem changing the default schema, try using T-SQL rather than the GUI. ALTER USER ...
It is recomended practive to always specify the schema name when refering to...
May 25, 2007 at 12:53 am
Indexes can be used for range scans.
If, say, you're always looking for the latest 10 records in the table, an index on the date field is very useful.
This is...
May 25, 2007 at 12:18 am
It might be an idea to normalise the table so that you can do equalities, rather than having to use like across a comma delimited list.
May 24, 2007 at 7:45 am
I did a comparison a while back, comparing the cast as varchar with the dateadd method for removing a time from a datetime, and the dateadd came in much cheaper...
May 24, 2007 at 7:38 am
It seems splitting up the current proc into numerous different queries defeats my original purpose of writing one generic proc in the first place and still no-one has answered the...
May 24, 2007 at 6:51 am
Viewing 15 posts - 48,661 through 48,675 (of 49,571 total)