Viewing 15 posts - 4,396 through 4,410 (of 13,469 total)
with what you've shown so far, you can certainly do them all at once; so you've left some important details out of the question at hand.
it's probably more a question...
November 14, 2012 at 2:19 pm
from my notes, which i swear i use daily when fiddling with dates:
--another midnight
CAST(DATEDIFF(dd,0,somedatetime) AS DATETIME).
this is one of the coolest things to use once you get your head...
November 14, 2012 at 11:51 am
ok, i see starting from right to left, when it gets to the right merge join, it's dealing with 14 trillion rows of data... a couple of those operations...
November 14, 2012 at 11:45 am
i've had that happen to me before;
you can change the database compatibility level (to 80?), and that will suppress the error.
alternatively, the error says what the issue is.
if you have...
November 14, 2012 at 9:56 am
you'll need to get a copy of sp_help_revlogin from microsoft; there are different versions, depending on 2000/2005, maybe even for 2008 and above, i don't quite remember.
assuming you are going...
November 14, 2012 at 9:43 am
new users are at least a three step process:
create the user in Active directory (you said that was done)
create a login for the user in SQL Server(you said that was...
November 14, 2012 at 6:16 am
--deleted duplicate post.
November 14, 2012 at 6:08 am
the index scan is normal, from what i read, since the constraint for the foreign key needs to be validated; to do that, it has to check the existing values...
November 14, 2012 at 5:30 am
YSLGuru (11/13/2012)
Thank you for the reply but I'm not following how this can be used to get the answers I'm looking for. Could you perhaps provide an example using...
November 13, 2012 at 3:17 pm
Just one question, though. Why do you leave the new server unpatched until later in the migration?
it's just something i saved in my notes...i think it has more to do...
November 13, 2012 at 2:47 pm
edit; for reference for others , he mentioned he already knows this one, as opposed to when the OS restarted:
select
sqlserver_start_time
from sys.dm_os_sys_info
November 13, 2012 at 2:42 pm
side by side migration, or an in place upgrade?
there's not a lot of difference in the preperation, as compared to a full on disaster recovery plan....if the new server doesn't...
November 13, 2012 at 2:22 pm
ok, i *think * this works fine.
i'm testing it for shorter 4-number-in-a-row patters for simplicity.
it doesn't quote work when the patter exists multiple times...it does fix one offending string each...
November 13, 2012 at 1:40 pm
YSL I have a pair of TableValued functions for this, that i use to join against existing data so i can group by the rounding up or rounding down to...
November 13, 2012 at 1:18 pm
SQLKnowItAll (11/13/2012)
Don't need the OR for the 17.. The 16 will catch it 🙂 and anything more than 16.
doh! thanks, how did i miss that?!
November 13, 2012 at 12:44 pm
Viewing 15 posts - 4,396 through 4,410 (of 13,469 total)