Viewing 15 posts - 301 through 315 (of 616 total)
Depends really....
If Instant File Initialisation is turned off then yes, auto growth on a large DB can affect performance temporarily.
Say you have a DB of 200GB size, when auto...
February 26, 2013 at 9:38 am
You will need to generate a control totals script. For your data of person and organization details you can have a for example:
1) Number of person records migrated.
2) Number of...
February 26, 2013 at 7:13 am
UPDATE a
SET a.password = b.password
FROM SCC..SEMP as a
INNER JOIN SCCL..SEMP as b
on a.ID = b.ID
AND a.fname = b.fname
AND a.lname = b.lname
February 26, 2013 at 2:25 am
You can try different settings for MAXTRANSFERSIZE and BUFFERCOUNT
I use BUFFERCOUNT = 1024 for my backups.
Also, I'm curious as to why you went for an odd number of strips? W...
February 26, 2013 at 2:22 am
Okay fair enough then just make the tempt table into a global temp table and problem is sorted.
February 25, 2013 at 5:22 am
No worries... have fun! 😀
February 25, 2013 at 5:00 am
Sweet, don't forget to change the PRINT to EXEC
February 25, 2013 at 4:54 am
Quick and dirty method 😛
create table #SSC(ID INT IDENTITY (1, 1), Code CHAR(1))
insert into #SSC
select 'A' union ALL select 'B' union all select 'P' union all select 'V' union all...
February 25, 2013 at 4:51 am
You can copy the result of the below and run in a new sql session:
with cte_MyCodes(Code)
as (select 'A' union ALL select 'B' union all select 'P' union all select 'V'...
February 25, 2013 at 4:32 am
What I can't forgive is the lack of effort to even disguise the question lol. It's like here's my assignment for Monday morning, I'm off to the pub with my...
February 23, 2013 at 8:59 am
sturner (2/22/2013)
Abu Dina (2/22/2013)
February 22, 2013 at 6:58 am
Thanks for this suggestion.
I managed to find a workaround for this. The original ID column was a varchar column with a mixsture of INTs and GUIDs (that's how the data...
February 22, 2013 at 6:55 am
sushmitakumarirana (2/21/2013)
can anyone tell me why to take bckup what is bacckup and restore concept? when to take backup?
Why do people have spare keys for their cars/homes?
February 21, 2013 at 10:03 am
You may want to consider Full-Text Search if your list is going to grow to 70 million+ words.
From MSDN:
A LIKE query against millions of rows of text data can take...
February 21, 2013 at 5:34 am
Viewing 15 posts - 301 through 315 (of 616 total)