Viewing 15 posts - 121 through 135 (of 350 total)
SET statement is mandatory part of UPDATE statement (check BOL for UPDATE), therefore you can not avoid using it.
September 21, 2011 at 9:45 am
This: http://blogs.lessthandot.com/index.php/DataMgmt/DBAdmin/mirroring-sql-server-2005-to-sql-server-2008
can help.
Good luck
September 21, 2011 at 9:36 am
It seems that"SET XACT_ABORT OFF" define transaction behavior.
In accordance with BOL: "When SET XACT_ABORT is OFF, in some cases only the Transact-SQL statement that raised the error is rolled back...
September 20, 2011 at 12:52 pm
"The more I learn, the more I learn how little I know"-
Just now I got that problem was in WHERE clause that refers column name explicitly.
Thanks Gail, my bad 🙂
September 20, 2011 at 12:04 pm
Sorry guys if I did not get something but this scripts works for me:
EXEC sp_Msforeachdb
'
if left(''?'', 5) = ''MyDB_''
begin
use [?];
if...
September 20, 2011 at 11:18 am
There is Hide (?- sorry do not have access to SSRS right now) property for column-
use IIF function and assign 0 or 1 to hide/show column depending on your...
September 15, 2011 at 9:38 am
It can be the case (I have this experience) that this is actually not SP or report issue but rather how browser renders this 20K+ records. Try using input parameters...
September 14, 2011 at 8:30 am
pnewhart (6/23/2011)
First, minor grammatical point: The IGNORE_DUP_KEY option only effects INSERT statements. This should be affects. 🙂
IMO next statement from the article
It is ignored...
September 14, 2011 at 8:15 am
There is good explanation in BOL "Backing Up and Restoring Full-Text Catalogs"- hope this can answer your question
September 13, 2011 at 8:43 am
Sql Servers 2005 and 2008 probably have different default settings for linked servers, therefore they behaves differently. I would suggest for 2005 you:
1) check connection/security (from srv2 to srv3);
2) check...
September 13, 2011 at 8:33 am
There are 2 suggestions:
1) Use RowNumber function instead
2) Check function scope.
Probably it can help.
September 13, 2011 at 8:11 am
Shame on me- completely forgot that there are actually 2 stop lists- system and DB.
Thanks for reminding 🙂
September 13, 2011 at 7:52 am
If you do not have 2008 installed yet how can you "'Add features to existing instance' "?
Logically speaking you should choose "Install new instance"
(frankly I would rather try it first...
September 12, 2011 at 10:23 am
Colin,
In 2005 "will" is in default noise list therefore FTS just ignores it (certainly it ignores ' "certificate" AND "will" ' also). I do not have right now 2008 in...
September 12, 2011 at 10:15 am
This link http://learnsqlwithbru.com/2009/09/24/downgrading-sql-server-enterprise-edition-to-standard-edition/
explains how to do this trick for 2005 versions- probably works for 2008 also
September 9, 2011 at 1:39 pm
Viewing 15 posts - 121 through 135 (of 350 total)