Viewing 15 posts - 4,126 through 4,140 (of 8,416 total)
All these messages are perfectly normal, and just reflect the fact that the database is being recovered and brought online.
April 6, 2010 at 5:07 pm
DBA-640728 (4/6/2010)
hi guys, i have a sql server linked server with a couple of catalogs, my question is how do i add another catalog to this existing linked server?
A 'catalog'...
April 6, 2010 at 5:05 pm
RBarryYoung (4/6/2010)
Tom.Thomson (4/6/2010)
Paul White NZ (4/6/2010)
Tom.Thomson (4/6/2010)
No, on today's form so far Barry is posting faster than Paul is.Quality over quantity 😛 😀 :laugh:
I think I'll let Barry answer that...
April 6, 2010 at 4:55 pm
CirquedeSQLeil (4/6/2010)
Looks like Paul was kind-hearted and provided some information - to the two DW questions.
Well it took me all of 15 seconds to Google it :doze:
He is being a...
April 6, 2010 at 4:54 pm
Peter Brinkhaus (4/6/2010)
April 6, 2010 at 4:47 pm
talktome_nani (4/6/2010)
I want to load data from database(Adventureworks) to Datawarehouse(AdventureworksDw) and i should also build some reports on it
Can anyone tell me the procedure how to do that. I...
April 6, 2010 at 4:30 pm
talktome_nani (4/6/2010)
April 6, 2010 at 4:27 pm
Peter Brinkhaus (4/6/2010)
A function that does data access is not deterministic...
USE tempdb;
GO
CREATE TABLE dbo.t (a INT NOT NULL) ;
GO
CREATE FUNCTION dbo.f (@i INT) RETURNS INT WITH SCHEMABINDING AS
BEGIN
...
April 6, 2010 at 4:03 pm
Marts (4/6/2010)
So another question we have replicataion going on here too, should it's log files (if any) also get moved?
If you mean the database log files (usually *.ldf) for the...
April 6, 2010 at 3:44 pm
carl.anderson-1037280 (4/6/2010)
I guess I have to read up on collations now!
Worth doing, but the reason it is important here is that the sorting and comparison rules are very complex for...
April 6, 2010 at 3:41 pm
Thank you, Carl.
As far as the actual requirement is concerned, concatenating RTF fragements (I'm not even going to ask why they are like that to start with) might be best...
April 6, 2010 at 3:35 pm
lmu92 (4/6/2010)
Interesting!
What do I misread/misunderstand when reading BOL?
I thought what you just demonstrated wouldn't be possible...
It looks like query optimizer is using ISNULL to override the columns NULL definition.
VERY...
April 6, 2010 at 3:27 pm
Carl,
Two suggestions:
1. Define @SomeText AS VARCHAR(8000) instead of VARCHAR(MAX)
2. Use the LATIN1_GENERAL_BIN collation - and only on @SomeText, not the replace chars.
VARCHAR(MAX) variables require a tempdb worktable,...
April 6, 2010 at 2:29 pm
lmu92 (4/6/2010)
SET @Score = ISNULL(@Score,0)...
April 6, 2010 at 2:01 pm
TheSQLGuru (4/6/2010)
It is absolutely improper to have more than one transaction log file per database.
Yes. Log files are different from data files - there is no proportional-fill algorithm.
April 6, 2010 at 1:50 pm
Viewing 15 posts - 4,126 through 4,140 (of 8,416 total)