Viewing 15 posts - 256 through 270 (of 497 total)
When you change modes the sa password is still disabled. Here read this article:http://technet.microsoft.com/en-us/library/ms188670.aspx
If Windows Authentication mode is selected during installation, the sa login is disabled and a password is...
January 13, 2014 at 9:17 am
igloo21 (1/10/2014)
Iām having a minor issue and Iām having trouble figuring out why. So basically all I want to do is update one column using the UPDATE and SELECT below....
January 10, 2014 at 9:05 am
Can you join Productss (is it really spelled with two S's :hehe:) to the select statement i.e.: UPDATE pdt
SET pdt.HotLeadParticipant=0
FROM
dbo.ValidProducts...
January 10, 2014 at 9:03 am
Please also provide the table DDL and some sample data along with the expected outcome. Please review the article in my signature and post the necessary items. Thanks
January 10, 2014 at 8:39 am
As Lynn said there isn't enough information I got rid of the splits variable and guessed at the others and it works fine for me:Declare @backupcommand varchar(2000)
,@subdir varchar(200) = 'c:\'
,@databasename...
January 10, 2014 at 8:37 am
Dennis Post (1/10/2014)
Because of the time it takes to review the rows another process may come in and start grabbing those same rows while you are in the middle of...
January 10, 2014 at 8:32 am
Partitioning would work great for your case, the only issue I see is the administration of having to prepare all of those partitions for every day. What your developer is...
January 9, 2014 at 11:12 am
Keith Tate (1/9/2014)
January 9, 2014 at 11:03 am
Again have you tired searching on the topic? There are a lot of good resources and a lot of the same principles apply regardless of which version you are moving...
January 9, 2014 at 9:04 am
The problem I see here is that you getting rows that have not been processed and then checking for bad data or other stuff and then processing them. Because of...
January 9, 2014 at 8:49 am
The select statement that Chris gives is for you to see the data before updating once you are comfortable with the query you can remove the select statement as it...
January 9, 2014 at 8:33 am
I'm not sure what you really want for you result set. Can you give us the actual results you want with real values and numbers?
January 9, 2014 at 8:27 am
Have you tired running a search on "sql server 2005 to 2008 upgrade checklist" there a lot of good hits using that. Here is one from SSC http://www.sqlservercentral.com/blogs/pearlknows/2010/12/13/upgrading-to-sql-server-2008-a-comprehensive-checklist/
January 9, 2014 at 8:22 am
Please edit your post to include consumable DDL and sample data scripts. This will make answering you question a lot easier.
January 7, 2014 at 2:30 pm
Looks better than what I came up with:
update @TheOriginalDates
set DateWithNewTime = dateadd(ss,-1,dateadd(dd,1,cast(cast(CurrentDate as date)as datetime)))š
January 7, 2014 at 9:17 am
Viewing 15 posts - 256 through 270 (of 497 total)