Viewing 15 posts - 12,646 through 12,660 (of 13,460 total)
you are right...you can read or write a registry key, but there is no log or anything to tell you when a registry key was created/edited.
if there is a key...
March 8, 2007 at 7:44 am
i should have mentioned, and you probably found it...the second sql can produce a ton of results, so i limited it to top 100...you'd pull that out to get all...
March 8, 2007 at 6:56 am
if you have access to the original db on 2005, you can use the scripts below ; here you go:
first script generates both drop and add foreign key statments;
second script...
March 8, 2007 at 5:09 am
it's been a couple of months since i last installed an SP4 on a SQL server, but it went less than 15 minutes as i remember; if your server is...
March 7, 2007 at 1:47 pm
because you are doning dynamic SQL, you'll want to put the SQL command in a string with a placeholder, and then replace the placeholder prior to the real exec statement....
March 7, 2007 at 11:49 am
time changes are at the operating system level..there is a registry patch for the operating system to change the daylight savings time on the new date available from microsoft...
sql server...
March 7, 2007 at 11:44 am
do not cross post...the Active topics function allows everyone to see new posts, regardless of forum. there is no need to ask the same question in multiple places.
answered here:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=349780
March 7, 2007 at 11:41 am
the correct answer is to not remove the identity at all...NEVER update sys tables directly...
the identity column sis there for conveneince, and you can still insert by setting an additional...
March 7, 2007 at 11:33 am
that error is usually when you try and stick 10 characters into a field that is smaller than 10 for example...check the TEST server's DDL for the table...i would bet...
March 7, 2007 at 11:24 am
you might want to consider writing a program to do the work(open file, manipulate, save file) instead of in TSQL; most languages are more robust in their ability to edit files...
March 6, 2007 at 10:17 pm
i have this procedure that i use; sorry i don't know the source of where i got it: this lists all servers on the network, you'd then need to query...
March 6, 2007 at 10:33 am
thanks Jeff I should have thought of that...he never said "procedure" so i assumed he was talking about ad hoc queries.
March 6, 2007 at 6:24 am
yes... if you select @@version, you would most likely see this:
Microsoft SQL Server 2000 - 8.00.2039 (Intel X86)
May 3 2005 23:18:38
Copyright (c) 1988-2003 Microsoft Corporation
Enterprise Edition on...
March 5, 2007 at 8:34 pm
I might be mis-understanding the question, but...
if you are re-using the same view name, and recreating it with different SELECT statements, then you should be able to use the command...
March 5, 2007 at 12:05 pm
similar issues here that Steve reported;
we started using strongly typed data sets, and found issues when the underlying structure changed...if we added a column to a table, for example, the...
March 5, 2007 at 11:58 am
Viewing 15 posts - 12,646 through 12,660 (of 13,460 total)