Viewing 4 posts - 1 through 4 (of 4 total)
Are the datatypes and lengths of the cleaned_data and the Customers columns the same (just in case you've got truncation happening which is why you are still getting a mismatch...
November 3, 2008 at 10:23 am
Is outlook configured on the server for the account that the SQL Server service runs under?
more information available here: http://support.microsoft.com/default.aspx/kb/263556
Since you are using SQL 2005 - why don't...
November 3, 2008 at 10:00 am
I'm having the same situation - I restored a DB backup where the initial size of the mdf file is set to 60GB when the actual data is around 6GB.
Since...
October 30, 2008 at 9:15 am
The script searches for patterns in INFORMATION_SCHEMA.ROUTINES
SET @sqlstm = 'Select Specific_Catalog as Database_Name, Routine_Name as ''Stored Procedure Name'',Routine_Definition
From '+ @getdbname+'.Information_Schema.Routines
Where PatIndex('+''''+@SString+''''+', Routine_Definition) > 0'
The ROUTINE_DEFINITION column here is...
July 31, 2008 at 2:00 am
Viewing 4 posts - 1 through 4 (of 4 total)