Viewing 15 posts - 151 through 165 (of 7,428 total)
This would be that SP with the information put in based on what I gave.
CREATE Procedure spHugeTable_IncrementalUpdate( @RowsPerBatch int )
AS
UPDATE
GHOSTDATA
TOP
(@RowsPerBatch)
SET
Regjimi = 'MI88'
WHERE
LEFT(NR_KEK,2) IN ('08','07','06') AND
Regjimi != 'MI88'
GO
So then...
March 28, 2008 at 8:00 am
It all depends on several factors but 30 minutes may be the best you can do.
On thing to keep in mind is how the change is handled in the...
March 28, 2008 at 7:43 am
Ian Yates (2/17/2008)
March 28, 2008 at 7:26 am
I have to say Biometric data used as proof of who you are is the one that scares me the most. As has been proven time and time again encryption...
March 28, 2008 at 7:23 am
I agree don't convert to varchar, try instead using DATEADD w DATEDIFF to alter the date itself. Here I made that tweak along with a tweak of get the MAX(run_date)...
March 27, 2008 at 2:00 pm
All depends on how you want to manage. Sounds like the view may do what you want but could be a stored procedure or your pplication could handle limiting the...
March 27, 2008 at 1:45 pm
SQL does not automatically rebuild indexes are large deletes it just leaves the spaces marked as deleted (the data is actually still in the database until it is overwritten). Check...
March 27, 2008 at 11:49 am
declare @x sysname
set @x = 'my_mother_told_me '
select datalength(@x), len(@x), right(@x,len(@X))
Actually that is easy. You stated the following...
March 27, 2008 at 10:55 am
You should not see an issue on collection side (as long as the collection side is on another server). You might thou in reporting and that is what you have...
March 27, 2008 at 10:17 am
The real question here is what is your goal. You are using Right but the net affect is the same as using LTRIM
LTRIM(ColName),
With LEN it does not count trailing blanks.
From...
March 27, 2008 at 9:56 am
OK then what I have done when I want no interferance and there is no real time need is this.
I have 2 tables in my capture database
CaptureTable1
CaptureTable2
I chose to use...
March 27, 2008 at 9:42 am
Depends. What is you actual goal for the data? I have used several different methods including two input tables with a single SP that flips nightly so I can move...
March 27, 2008 at 9:13 am
The second is what MS demonstrates and would be what I use if I have to.
My only concern is the first if something goes wrong with the test for condition...
March 27, 2008 at 9:11 am
Viewing 15 posts - 151 through 165 (of 7,428 total)