Viewing 15 posts - 31 through 45 (of 53 total)
schwizzla (5/5/2009)
2275 records = Unique LicenseNumber
1941 records = duplicate x2
11 records = x3
5 records = x4
ProductLicense_Idn (PK, int, not null)
LicenseNumber (Varchar(255), not...
May 5, 2009 at 9:03 am
INSERT INTO...SELECT into a table with a clustered index can still be minimally logged, unless it contained rows before the INSERT, in which case it will be fully logged regardless...
May 5, 2009 at 6:54 am
Hang on. Are you doing SELECT ... INTO (in which case the destination table doesn't exist prior to the execution) or INSERT INTO ... SELECT (where the destination table does)
Where's...
May 5, 2009 at 6:40 am
I speak about 10,000,000 rows:
a few int, float and datetime columns
Transaction Log grows up to 10 GB, then there is no more harddisk
Thank you, I already learned a lot today....
May 5, 2009 at 6:21 am
Thanks Paul. I will try to make a full backup but currently I'm waiting for a rollback (transaction log could not grow..:w00t:)
Is there a History where I can see, what...
May 5, 2009 at 5:20 am
no, there is no transaction. Meanwhile I learned to update the MinLSN in the transaction log using a checkpoint. That helped.
But there is still one Statement which causes a large...
May 5, 2009 at 5:14 am
February 14, 2009 at 11:47 am
hmm..now I'm a little disappointed from sqlserver.
Thanks for help.
October 14, 2008 at 2:58 am
Hi,
i tried to build the table with a nonclustered primary key, but it still doesn't work.
create table partitiontest(
test_id int identity(1,1) not null
, period datetime not null
...
October 13, 2008 at 5:05 am
Ok, i found out the solution:
alter TRIGGER [trig_deny_ddl]
ON database
for DDL_TABLE_EVENTS, DDL_VIEW_EVENTS, DDL_FUNCTION_EVENTS, DDL_PROCEDURE_EVENTS
AS
declare @command nvarchar(max)
SELECT @command = EVENTDATA().value('(/EVENT_INSTANCE/TSQLCommand/CommandText)[1]','nvarchar(max)')
if @command not like...
September 5, 2008 at 5:54 am
Hi,
I'm logging OnPreExecute now. That works fine.
Thank you,
Tobias
August 15, 2008 at 2:16 am
Hi,
partitioning and staging not necissarily goes hand in hand.
Please explain your requirements in more detail.
Staging is a way of loading data from sources and transform it.
The key of partitioning is...
August 8, 2008 at 12:35 am
Thank you. For my situation, disabling the foreign key worked fine
August 7, 2008 at 6:25 am
Hi,
that query was surely not optimized. I added one additional, combined index and suddenly the query uses a slightly different plan and is fast.
I just wonder, if (and i will)...
July 21, 2008 at 11:49 pm
Thank you for that information. Actually a progress bar seems not to be the proper method. Perhaps we can use a animated gif..
May 9, 2008 at 1:09 pm
Viewing 15 posts - 31 through 45 (of 53 total)