Viewing 15 posts - 21,616 through 21,630 (of 26,490 total)
Goldie Graber (4/8/2009)
For example if I use the following data, I still expect 1 as the answer but your query...
April 8, 2009 at 10:01 am
Global temporary tables (##temptable) stay around until SQL Server is restarted. Local temporary tables (#temptable) will dropped when the session that creates them ends.
April 8, 2009 at 9:58 am
Sounds like the client tools weren't install on the server. Was SQL Server installed as part of the application or separately? I guess what I'm trying to figure...
April 8, 2009 at 9:54 am
I would also like to verify what version of SQL Server you are running.
April 8, 2009 at 9:50 am
sward (4/8/2009)
* Are the 4 (source + 3 destinations) same structure?
--The destination tables have the same field names.
* Could you...
April 8, 2009 at 9:47 am
Tara (4/8/2009)
I have tableA with CCode
ID CCode
1 98773
2 68790
3 62098
4 23899
and would...
April 8, 2009 at 9:33 am
You can also check this out:
--- sample table
CREATE TABLE #CheckIn
(
CheckInID INT IDENTITY(1,1)
,UserID INT
,Comment VARCHAR(50)
)
--- insert some sample data
INSERT INTO #CheckIn (UserID, Comment)
SELECT 1, 'A'
UNION ALL...
April 8, 2009 at 9:21 am
It isn't REPLACE that is doing this, it is your collation. In a case-insensitive collation 'a' = 'A'. As shown by your own example, in a case-insenstive collation...
April 8, 2009 at 9:12 am
Please don't double post. It fragments answers.
Continue replies here.
April 8, 2009 at 8:59 am
The issue is due to your using a case insensitive collation. Look at the following:
DECLARE @str VARCHAR(100)
SET @str = '1234567890'
SELECT REPLACE(@str collate Latin1_General_CI_AS,CHAR(179),'_')
SELECT REPLACE(@str collate Latin1_General_CS_AS,CHAR(179),'_')
SELECT REPLACE(@str collate Latin1_General_BIN2,CHAR(179),'_')
April 8, 2009 at 8:48 am
Could you successfully move the backup file you created locally to the UNC location?
April 8, 2009 at 8:43 am
Luke L (4/8/2009)
April 8, 2009 at 8:09 am
Glad to hear it worked. Just so you know, it is just common curtesy to let people know if your problem has been solved and how. This is...
April 7, 2009 at 9:35 pm
Lynn Pettis (4/7/2009)
Jeff Moden (4/7/2009)
Actually, there are a dozen or so good folks on this forum that I'd like to see get the MVP.
I did a little more reading, Jeff....
April 7, 2009 at 8:29 pm
Curious, you respond to Jerry, but not a word about wether or not my suggested change helped you or not? Sorry, but something is missing there, don't you think?
April 7, 2009 at 7:50 pm
Viewing 15 posts - 21,616 through 21,630 (of 26,490 total)