Viewing 15 posts - 2,371 through 2,385 (of 14,953 total)
Using <= in that one will be the opposite of what you want. Use Drew's last example. No reason to overcomplicate this.
January 4, 2012 at 12:37 pm
Have you checked things like the error log?
SSRS logs errors to a file in the installation directory. It also has, if I remember correctly, an execution log in the...
January 4, 2012 at 11:25 am
I must also be missing something. What's wrong with the solution you already posted?
January 4, 2012 at 11:20 am
Usually, the application needs to have that built into the data access layer (DAL). It either checks a heartbeat for the primary and, failing a response on that, changes...
January 4, 2012 at 11:19 am
If you're using "SELECT @Trigger", that's a result-set, not an output parameter. Change to a simple result set, and map it in the options.
January 4, 2012 at 11:14 am
What kind of standards?
Standard coding?
Layout and readability standards?
Best-performance standards?
ANSI standards?
Coding standards are on MSDN (and in Books Online). These often include notes on best/worst use.
Layout and readability standards depend...
January 4, 2012 at 10:02 am
Multiply the hours duration by 3600, the minutes duration by 60. Total those up with the seconds, and you have a total seconds of duration. Even easier, skip...
January 4, 2012 at 9:57 am
Change SINGLE_BLOB to SINGLE_CLOB. BLOB is for "Binary Large OBject", CLOB is for "Character Large OBject". Using the BLOB version makes SQL Server assume it's binary data, which...
January 4, 2012 at 9:53 am
When I used to be in sales and marketing, I made sure to include drawbacks, costs, et al, in the negotiations. Wasn't selling software, but it was still sales...
January 4, 2012 at 8:27 am
iPolvo (1/4/2012)
paul s-306273 (1/4/2012)
January 4, 2012 at 8:23 am
This should be a new post, not an addition to a post from 2007 on a somewhat different subject. But, to answer your question, no, that's not what that...
January 4, 2012 at 8:04 am
Brandie Tarvin (1/4/2012)
January 4, 2012 at 7:55 am
Cool.
Is it anything you can post here?
January 4, 2012 at 7:42 am
sqlvogel (1/4/2012)
January 4, 2012 at 7:38 am
I've never yet seen an application correctly validate all the data being fed in through it. Most? Sure. All? No way.
Just ran into a situation where...
January 3, 2012 at 12:44 pm
Viewing 15 posts - 2,371 through 2,385 (of 14,953 total)