Viewing 15 posts - 1 through 15 (of 31 total)
Sorry for the post, didn't realize this was SQL 2005
April 3, 2006 at 1:25 pm
OK
Currently I have it stored as
street_line1 VARCHAR(100)
street_line2 VARCHAR(100)
street_line3 VARCHAR(100)
city VARCHAR(30)
state ...
September 20, 2005 at 8:09 am
I'm still having problems.
Do you know a way using either SOUNDEX or DIFFERNCE to get the following results?
I'm wanting to take to addresses (a parent record and a child record),...
September 20, 2005 at 7:56 am
I never even thought about using cmdshell.
Thanks Bud!!
December 17, 2004 at 12:41 pm
Thanks guys.
So just to clarify: It is the collation that makes the sql server case sensitive. Right?
I just have no idea how to make not be case sensitive.
November 24, 2004 at 8:43 am
I know to check/change the database default. How do you look at the server default?
November 20, 2004 at 6:18 am
I appreciate all of the help guys. I ended up using the following the system stored proc
sp_configure 'remote query timeout', 0
go
reconfigure with override
go
Thanks
October 11, 2004 at 7:17 am
Sorry for being so verbose.
This is the following error I keep receiving
Could not process object 'CALL S10142CA.GENPRDCUST.SP9994(' 050', '20040815')'. The OLE DB provider 'MSDASQL' indicates that the object has no...
August 18, 2004 at 7:58 am
That was one of my first thoughts. Still didn't work
August 18, 2004 at 5:37 am
This may seem like a lot, but here it is.
/*********************************************************************************************/
IF (OBJECT_ID('tempdb..#my_table') IS NOT NULL) DROP TABLE #my_table
CREATE TABLE #my_table
(
[id] INTEGER IDENTITY(1,1)
, start_date DATETIME
, end_date DATETIME
 
July 16, 2004 at 7:00 am
Excellent!
Thanks to both of you for all your help, as well as the scripts. It's good to have a place for DBA's to help each other.
Shane
July 7, 2004 at 5:51 am
Wow!!
Thanks for all the help guys. My next question is: Which way is better? A rebuild or a defrag? Do they both accomplish the same thing? Should I use both? ...
July 7, 2004 at 5:41 am
Viewing 15 posts - 1 through 15 (of 31 total)