Viewing 15 posts - 4,711 through 4,725 (of 7,505 total)
Can you post :
- the tables create statement (ddl)
- the partition function ddl statement
- the partition scheme ddl statement
July 17, 2008 at 11:42 am
- with the least overhead you could generate and execute truncate statements for every table. (truncate will only work if there are no FKs pointing to the table)
- or you...
July 17, 2008 at 11:34 am
VD (7/16/2008)
can you please provide more info about the iLO driver bug? We've recently had issues with an HP box restarting without ANY errors in any of the...
July 17, 2008 at 1:28 am
it's the yolk that does it :w00t: 😀
July 16, 2008 at 1:45 pm
Good notice Carl.
Another remark:
Keep in mind one should also join with information_schema.tables to find out what kind of table it is. (should be "base table" in this case)
information_schema.columns returns info...
July 16, 2008 at 1:44 pm
try using this for the second test:
IF(@SFound = 1) SET @sql = @sql + 'ALTER TABLE [dbo].[ptNotes] ALTER COLUMN [Type] varchar(10) NULL;'
We've all had this kind of experience...
July 16, 2008 at 1:19 pm
I hope this is not on a production database system.
Don't shrink the db unless you realy need to !
SQLServer needed the log-space to support your db !
Making a log-backup frees...
July 16, 2008 at 1:04 pm
btw the HowTo for lock pages in memory:
See bol: "How to: Enable the Lock Pages in Memory Option (Windows)"
July 15, 2008 at 5:16 am
One good starting point for MS might be to post the demo-applications and the related source-code.
As everybody knows, copy-paste is your best friend 😉
We've all seen the demo on db...
July 15, 2008 at 2:11 am
Perry Whittle (7/14/2008)
VM's under ESX 3.x can support 16GB RAM, 4 vCPU, 4 vNIC. ESX 3.x also allows you to use the full 8 node MSCS
That's an enhancement indeed. Thanks...
July 15, 2008 at 12:42 am
Tran_Key NOT IN ( SELECT Tran_Key
...
July 11, 2008 at 8:11 am
mailsar (7/10/2008)
.... "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\csc.exe" ...
Maybe you should first try to upgrade to SP2 including the latest cumulative update (CU8).
If the reinstall of SSMS doesn't help out ....
you may need to reinstall...
July 11, 2008 at 7:17 am
Ansi settings may indeed have an impact.
Also check the transaction isolation level.
(although IMO that shouldn't generate another exec plan)
Same query :crazy:
Are you sure the query is 100 % equal !
(included...
July 11, 2008 at 7:11 am
did you try to drop the full PK constraint ?
ALTER TABLE your_partitioned_table
DROP CONSTRAINT PK_ ... '_constraintname
You may not be able to drop the PK if you have foreign keys that...
July 11, 2008 at 5:17 am
IMO:
- a user cal is dedicated to a user ! ( may connect to any number of instances)
- a device cal is dediceated to a (client) device ! (may connect...
July 11, 2008 at 12:23 am
Viewing 15 posts - 4,711 through 4,725 (of 7,505 total)