Viewing 15 posts - 1 through 15 (of 28 total)
varunkum (1/19/2011)
January 19, 2011 at 12:25 pm
Give this a try
DBCC SHRINKFILE (N'Test001' , 1000)
the 1000 is the size MB can not be smaller then used space
December 6, 2010 at 8:48 am
But sir, I am not so expert to use all this, will you please help me.
Just compare four columns of table PendingClaims to OldAr table. if any change in columns...
November 30, 2010 at 5:42 am
Reo (11/18/2010)
Hi,You can compare with CHECKSUM(Chartnumber, Dataofservices,CPT,Amount) and also you can compare your compete table or every row with CHECKSUM(*)
I would not use this method you will get false/positives with...
November 30, 2010 at 4:56 am
The only time I have seen the model database change is when someone added objects to it by accident or when source control software added objects to the model
November 28, 2010 at 10:09 am
I agree hit refresh or F5
November 27, 2010 at 8:43 am
Hi
I have seen some issue like this, but have been able to find and fix the issue, most of the time it something wrong with the data.
Is there...
November 25, 2010 at 8:15 am
I deal with this very often with data from my clients, If you take large vendor master you may have 25 different vendor numbers for same vendors. There is so...
November 24, 2010 at 5:09 am
EXEC(@sql)
A Simple way to test what you are building in your @SQL is to
PRINT(@SQL) --I use this to debug the statement
--EXEC(@sql)
November 23, 2010 at 8:08 am
Did you try the Ex I posted I have not had time to test
November 23, 2010 at 7:56 am
petervdkerk (11/19/2010)
Anyway, your code seems to do [almost] what I need.
Currently your code shows: #duplicate records - 1, meaning that if I...
November 19, 2010 at 11:50 am
See if this works for you
INSERT INTO @prosp(Id,companyname,cnt)
SELECT
P.Id,
P.companyname,
P.cnt
FROM
prospects P
INNER JOIN
...
November 19, 2010 at 7:26 am
Paul White NZ (11/19/2010)
QQ-485619 (11/18/2010)
How can I do to make the transcation commit every 10000 row.
There is a complete explanation and script in the following SSC article by Lynn Pettis:
http://www.sqlservercentral.com/articles/67898/
The...
November 19, 2010 at 5:46 am
@cmd = N'select @col1 from dbo.testtable'
I am not sure if this correct and would need to test but if you give it a try I would think something like this...
November 19, 2010 at 5:34 am
hard to say with out sample data and no table structure
a very simple way is
top 10000 control with a WHERE effdat <> enrolldat
If you give me some more info...
November 19, 2010 at 5:12 am
Viewing 15 posts - 1 through 15 (of 28 total)