Viewing 15 posts - 1,516 through 1,530 (of 1,999 total)
sp_addserver 'msyserver','local' also requires you to stop and re-start the service before it takes effect
July 5, 2007 at 1:59 am
i have come across this on several occasions.
i tried dropping the article and adding back in before creating a new snapshot, but the problem re-appeared.
the only method i've found of...
July 2, 2007 at 5:25 am
I hate the way articles on this site have started to become "adverts"
if it's a balanced article about the merits of refactoring and intellisense then mention the competition.
what could have...
June 28, 2007 at 1:47 am
look at sysdatabase.category
select * from sysdatabases where category&&1=1 or category&&4=4
this will tell you if it is published via transactional or merge replication - see books online sydatabases for...
June 27, 2007 at 5:07 am
rather than looking at recompiles and statistics, how about looking at your joins themselves.
would it be possible to have 2 versions of the proc - each with distinct join...
May 9, 2007 at 2:47 am
you can also try using SET FMTONLY on/off
will execute the query, but not affect any rows or return rows (only metadata)
this would show up errors better than parseonly for missig...
April 12, 2007 at 5:55 am
as long as it's fast and useable i don't care (or want) fancy flash animations, button rollovers etc. I want to find and post data fast.
on another front how about...
February 26, 2007 at 8:05 am
the error indicates that it's attempting to use mm/dd/yyyy date format - possibly due to your login set to English rather than british, or dateformat settings
try
where Date >= '06/13/2006'...
January 20, 2007 at 5:10 am
as i said in my post - it's bad practice - we wouldn't do it, but the forums are here to help not to preach about what developers SHOULD be...
January 3, 2007 at 3:27 am
if @@servername returns different to serverproperty('machinename') then it's possible your server has been renamed??? - that MIGHT acount for the .\accountname not working correctly ????
you can rename your sql instance...
January 2, 2007 at 6:23 am
the script located here
http://www.sqlservercentral.com/scripts/viewscript.asp?scriptid=1541
would give you a good starting point
it was designed to move indexes from one filegroup to another, but it could easily be modified to create a file...
December 30, 2006 at 9:02 am
i would suspect something shutting the service down - look for a sheduled job in sql agent or windows sheduled tasks that does something along the lines of
xp_cmdshell 'net...
December 30, 2006 at 8:56 am
this really depends on how big your tables are.
if you only have small tables then there won't be any impact of auto stats, but for alrge tables (say for...
December 30, 2006 at 3:10 am
Steve,
have you tried scripting out "Enterprise mangler" code? great for small tables, but it has a tendency to be backwards compatable and Drop the table and recreate it....
December 30, 2006 at 2:29 am
Viewing 15 posts - 1,516 through 1,530 (of 1,999 total)