Viewing 15 posts - 76 through 90 (of 517 total)
SELECT * INTO NewTable FROM ... is the preferred method nowadays. That CREATE TABLE x AS SELECT ... sounds like an oracle command, since they like to make everything twice...
January 21, 2011 at 10:57 am
Were they charging by GB Transferred or something?
There are a million better ways to do it, including the one you mentioned. Merge is great. If you happen to have Record...
January 21, 2011 at 10:52 am
I'm pretty sure you don't even need to install BIDS to be able to connect to reporting services via SSMS.
That said, what permissions exactly are you trying to set? You...
January 21, 2011 at 10:49 am
Normalizing is great if you have a way to guarantee that you know all locations ahead of time...
How are these locations entered? If they are currently just free-typed into a...
January 21, 2011 at 10:45 am
Why not just script them out in a batch via object explorer details?
Then the only manual work you'd have to do is replace the passwords...and if you're using the same...
January 21, 2011 at 10:29 am
Thanks for replying and letting us know the root cause.
I actually just ran into a similar issue and this fixed it for me 😀
January 17, 2011 at 9:22 am
As gsquared said, there is no difference at all.
SQL will translate current_timestamp AND getdate() to the exact same code to be executed on the back end. There is no performance...
December 17, 2010 at 7:48 am
The SSIS package is independent of the SQL server version..it doesn't matter if the server itself is 32 or 64 bit. You can test a package on a 32 bit...
November 23, 2010 at 8:54 am
lol
What he's trying to say is that pic was edited after the screenshot was taken to just blank out those database names.
There is no way to actually hide them.
November 23, 2010 at 8:52 am
GilaMonster (11/15/2010)
There's no single ideal setting for MAXDOP. This is one of those 'It Depends' scenarios. It depends what you're running.
As with everything in SQL 🙂
But, one thing you really...
November 15, 2010 at 2:01 pm
Roy Ernest (11/15/2010)
November 15, 2010 at 1:54 pm
Yes, that's pretty high for read times.
Your bottleneck might be poor coding/indexes though, which causes stress on the IO...check the execution plan for that query and try to tune from...
November 15, 2010 at 1:39 pm
If you don't have a SQL login with sysadmin available to you (don't know the SA password), and your domain account is not an admin..well you're a bit hosed then....
November 15, 2010 at 1:36 pm
Set your MAXDOP to half of your physical core count, ignoring hyperthreaded cores.
If you're running 2x Dual Core procs with HT, then you have 4 physical cores. Maxdop 2 would...
November 15, 2010 at 1:33 pm
If you're doing a large cluster like that, there's still an extremely low chance that you'll have 2 servers down at the same time. Even if you did have two...
November 15, 2010 at 1:29 pm
Viewing 15 posts - 76 through 90 (of 517 total)