Viewing 15 posts - 1,936 through 1,950 (of 6,486 total)
RBarryYoung (3/7/2009)
GilaMonster (3/7/2009)
t.walker (3/6/2009)
I really support that idea. I think a more private invited members forum would enable me to speak more freely/
Just one question. How would you determine who's...
March 7, 2009 at 9:08 am
Tomm Carr (3/6/2009)
Matt Miller (3/6/2009)
March 7, 2009 at 8:55 am
The bigger question would be - why is it so important to have it "in the middle?" The display order, or column seq# has nothing to do with how...
March 6, 2009 at 2:53 pm
Tomm Carr (3/6/2009)
Irish Flyer (3/6/2009)
What you do for a living shouldn't NECESSARILY be "What have you chosen to give your life meaning?"
It's not a question of necessity. It just is....
March 6, 2009 at 2:41 pm
A few more points (in addition to the already excellent info already out here).
- you can't issue a BACKUP LOG against a DB in simple recovery mode...
March 5, 2009 at 12:39 pm
unless you're using Access 2000 or earlier - you really should be using OLEDB and not ODBC. In addition, you should probably look at your OLE DB connection string...
March 3, 2009 at 3:11 pm
unless you're using Access 2000 or earlier - you really should be using OLEDB and not ODBC. In addition, you should probably look at your OLE DB connection string...
March 3, 2009 at 3:11 pm
If you want to reuse them - then dump them into a temp table. Just create the temp table in the calling stored proc, fill it using the dynamic...
March 3, 2009 at 2:53 pm
Essentially - no. Not in a function.
In order to do that you would need to run the statement as "dynamic SQL" which is not possible through T-SQL functions (since EXEC...
March 3, 2009 at 12:16 pm
What you CAN do is use what is called a CTE (Common Table Expression), which allows you to create reusable expressions.
So - you'd have to build a CTE that holds...
March 3, 2009 at 10:01 am
sqlcentral (3/3/2009)
March 3, 2009 at 9:55 am
Try this as your query.
SELECT Type, mrPRIORITY, COUNT(*) AS TypeCount
FROM MASTER6
WHERE (mrPRIORITY <= '4')...
February 26, 2009 at 3:05 pm
That's what I'm talking about. In the SSRS Report Parameters area - set it to be dateTime parameters. The Endate+1 is trying to be evaluated before being passed...
February 26, 2009 at 2:18 pm
Have you set the parameters to be DateTime? It sounds like SSRS is treating them as something other than dates.
February 26, 2009 at 12:51 pm
Appyling the FormatPercent turns that back into a varchar. Which is fine for display purposes, but as you've already discovered - no good for sorting. So - you...
February 26, 2009 at 11:22 am
Viewing 15 posts - 1,936 through 1,950 (of 6,486 total)