Viewing 15 posts - 5,146 through 5,160 (of 8,416 total)
stefan.gustafsson 60897 (3/18/2010)
Sure, why not ? The only possible ill effect is that it might slow down insertions to the table slightly.
Slow insertions, poor page fillfactors, poor scan performance, fragmentation,...
March 18, 2010 at 7:38 am
SQL Server is using much more memory than that.
Take a look at the Total and Target Server Memory counters in Performance Monitor - you will find them under the Memory...
March 18, 2010 at 7:25 am
stefan.gustafsson 60897 (3/18/2010)
The easiest way to fix the problem is to make the index clustered instead of non-clustered. This would definitely solve the problem.
:blink: You want to create a clustered...
March 18, 2010 at 7:07 am
Had to guess at the data types a bit:
WITH TmpDoublons (ROWID, numero_avis)
AS (
SELECT ...
March 18, 2010 at 6:58 am
The Dixie Flatline (3/18/2010)
http://xkcd.com/712/
Just awesome.
March 18, 2010 at 6:37 am
The Dixie Flatline (3/18/2010)
Those runes look more like Dwarvish, Paul
Couldn't find a good elvish translator...took the easy road 😉
March 18, 2010 at 6:35 am
Example based on those two tables:
ALTER TABLE dbo.OrderFormHeader
DROP CONSTRAINT [FK_OrderFormHeader_OrderGroup];
TRUNCATE TABLE dbo.OrderGroup;
TRUNCATE TABLE dbo.OrderFormHeader;
ALTER TABLE dbo.OrderFormHeader
...
March 18, 2010 at 6:11 am
Grant Fritchey (3/18/2010)
I'm pretty sure Tolkein's Elf language is published somewhere. That's sure to boil someone's blood.
http://www.bmeijer.com/fun_stuff/runic_translator/index.html
March 18, 2010 at 6:01 am
river1 (3/18/2010)
No, the identity does not need to retain the same values. I just need to recreate the whole table (primary key and identity)
There is no way I can see...
March 18, 2010 at 5:53 am
It is reasonably simple, as I outlined in my last post.
If it doesn't make sense yet, provide a simplified example that we can work with to outline the concept.
March 18, 2010 at 5:45 am
Krasavita (3/18/2010)
what i should I have 4 tables, 2 tables were truncated by table 3 and 4 giving this error
It would help explain the problem if you post the full...
March 18, 2010 at 5:43 am
river1 (3/18/2010)
March 18, 2010 at 5:29 am
Is it not as simple as generating a list of numbers, starting at random 'R', then adding 'N' until enough records are selected?
If so, write something to populate a temporary...
March 18, 2010 at 5:26 am
peleg k (3/18/2010)
but just to update you : when adding the OPTION (RECOMPILE); ->...
March 18, 2010 at 5:20 am
:blink: Do you want to take another shot at explaining that? :blink:
It is possible to do many things with the export data tool - I just need to understand the...
March 18, 2010 at 5:16 am
Viewing 15 posts - 5,146 through 5,160 (of 8,416 total)