Viewing 15 posts - 286 through 300 (of 429 total)
are you saying the restore from a backup took 3 hours to run? that's seems very long. how many gb is thd database?
April 29, 2007 at 11:53 pm
why don't you just take a backup of the entire db in the normal way? then you can play around all you like, and if you mess it up, just restore...
April 29, 2007 at 11:46 pm
It's certainly possible. They will of course compete for resources (cpu, memory, and disk) when both are under load.
I wouldn't recommend it for a production server.
April 29, 2007 at 11:37 pm
according to probability of the customer to purchase that product, ideally.
April 29, 2007 at 11:33 pm
about views with ORDER BY clauses in them: don't do it. it's a bug if the query designer is adding that. The order by belongs in the query that targets...
April 29, 2007 at 11:31 pm
sounds like a homework problem to me.
why not code up this little program and see for yourself?
also, the property you are thinking of is byte.MaxValue, not maxvalue. C# keywords...
April 29, 2007 at 11:16 pm
From BOL, on the topic of creating a login from a certificate http://msdn2.microsoft.com/en-us/library/ms189751.aspx:
"This certificate must already exist in the master database."
so, you need to create your cert in...
April 29, 2007 at 11:04 pm
that's a little weird to store an street number in a float.
are streets fractional where you live? if so to how many digits of precision?
April 29, 2007 at 10:59 pm
that's weird. does it persist even after a reboot?
if so I guess you'll just have to do everything in unicode.
April 29, 2007 at 10:42 pm
btw, your view has a bug in it, but it's a very common one.
you should not have ORDER BY clauses in a view, nor should you have the TOP 100...
April 29, 2007 at 10:38 pm
why not just use bcp? to me it's much nicer than either ssis or dts for moving large amounts of data around. but then i dislike the GUI...
April 29, 2007 at 10:32 pm
1) you can rename a table with sp_rename: http://msdn2.microsoft.com/en-us/library/ms188351.aspx
2) one way to do this would be to script out all the procs/views/functions and do a search/replace. I wrote a...
April 29, 2007 at 10:23 pm
and here's how Job Activity Monitor figures it out:
exec
msdb.dbo.sp_help_job
April 29, 2007 at 10:12 pm
with those numerous links in your sig, I have a feeling that your posts are some sort of SEO strategy rather than a request for real information.
plumbinf.com? roofinh.com? you seem...
April 29, 2007 at 10:40 am
Madhi shows how to go straight to excel in this marathon sqlteam post: http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=49926
April 29, 2007 at 12:06 am
Viewing 15 posts - 286 through 300 (of 429 total)