Viewing 15 posts - 6,046 through 6,060 (of 49,571 total)
Sure.
Hahahhahahahahahaha!
Hehehe..
*snigger*
How you store the data and how you process it should be determined by the type of the data, the type of analysis and the type of results.
Is the...
May 5, 2015 at 7:02 am
Dan121 (5/5/2015)
Thanks for your reply. It's not Production. Just test servers. don't have plan to use in Prod.
Cool, so which of the features are you looking to test? Failover clustering...
May 5, 2015 at 6:49 am
First thing.
AlwaysOn is a marketing term, not a feature. The features are AlwaysOn:Availability Groups and AlwaysOn: Failover Clustering
Second thing, Developer Edition is licensed only for non-production usage. While it's...
May 5, 2015 at 5:45 am
Is SQL the thing using the cpu?
May 5, 2015 at 5:29 am
kd11 (5/4/2015)
May 5, 2015 at 2:47 am
karodhill (5/4/2015)
Im trying to create a procedure that if either one of the parameters are null then the other one will apply
Please go and read the blog post I...
May 5, 2015 at 2:41 am
Ignoring the syntax problems (which is because you're missing a comma between the two parameters), this is generally not a good idea and will probably lead to performance problems in...
May 4, 2015 at 2:52 pm
A name specified on a rollback MUST match the name given on the outermost begin tran. You have no name on the begin tran, hence naming the rollback throws an...
May 4, 2015 at 10:02 am
Don't use the GUI.
The T-SQL query window in SSMS doesn't have a timeout set (the GUI does), so a written query will run as long as necessary. It may be...
May 4, 2015 at 10:01 am
Chat with whoever you purchased it from, they should be able to provide the 2012 media.
That link is a service pack.
May 4, 2015 at 5:00 am
MSDN downloads or the Volume Licencing page, depending on how your version is licensed.
May 4, 2015 at 4:33 am
You can not include it in a specific trace definition, but that's all. You can't stop a trace from ever seeing the column.
May 4, 2015 at 4:29 am
Weird. I suspect because Round returns numeric of the same precision and scale as its input, and 10 won't fit into a numeric (2,1)
As a workaround:
select ROUND(CAST(9.5 AS Numeric(3,1)), 0)...
May 4, 2015 at 2:57 am
Charles Kincaid (4/30/2015)
SQL server is a bit vulnerable during a shrink operation. ... If something goes bad during the shrink then a restore is likely to be needed.
Not really. No...
May 4, 2015 at 2:45 am
All of those functions are likely to cause performance problems if they're called within another select. Data-accessing scalar functions should be avoided whereever possible and especially avoided within another query.
Try...
May 4, 2015 at 2:39 am
Viewing 15 posts - 6,046 through 6,060 (of 49,571 total)