Viewing 15 posts - 2,656 through 2,670 (of 7,168 total)
Enable and start that service first. Then try connecting to MAINPC\SqlExpress using SSMS 2012.
December 21, 2012 at 9:28 am
That still does not resolve the issue of someone having a job_id parked in some code somewhere and that job_id ceasing to exist when a job is dropped and recreated....
December 21, 2012 at 9:24 am
MyDoggieJessie (12/21/2012)
John Mitchell-245523 (12/21/2012)
December 21, 2012 at 9:10 am
Sanity check before you change anything. You are trying to connect to MAINPC\SQLExpress through SSMS 2012, corrrect? Have you verified SQL Browser service is running?
December 21, 2012 at 9:08 am
For $ I would recommend an exact numeric data type with the scale you need to satisfy your accounting requirements.
December 21, 2012 at 9:06 am
BenWard (12/21/2012)
ah cool. Good to know I'm not abusing the udf 🙂
well...2000 function calls x 13 months of data per report, while not the typical abuse-pattern, in some circles it...
December 21, 2012 at 7:26 am
What exactly does your .tbl file contain and by "execute" do you mean "import"?
December 21, 2012 at 7:07 am
No worries. You're doing fine with the use of Scalar UDFs. The way you are using them is actually the only way I support their use. I just do not...
December 21, 2012 at 7:04 am
Not unless you can deserialize the object using a SQLCLR object to review its properties, which I highly doubt. There is no native Java capability in SQL Server that would...
December 21, 2012 at 6:40 am
Comparing FLOAT and REAL to DECIMAL and NUMERIC is not really fair. The former are approximate numeric data types and the latter are exact numeric data types. I am leaving...
December 21, 2012 at 6:33 am
The CTE syntax itself does not require a leading semi-colon. Rather the preceding statement must be terminated with a semi-colon.
December 21, 2012 at 6:16 am
Did you install Express Edition?
December 21, 2012 at 6:11 am
BenWard (12/17/2012)
I have a database used for reports that has a bunch of scalar functions on it that generate assorted record counts etc. Scalar functions we know are inefficient but...
December 21, 2012 at 6:05 am
Regular views offer nothing from a performance standpoint. Views are simply replaced by their definition in the query submitted for execution and then optimized as if the query submittor had...
December 21, 2012 at 5:58 am
Viewing 15 posts - 2,656 through 2,670 (of 7,168 total)