Viewing 15 posts - 706 through 720 (of 1,193 total)
Seems that clustered vs heap consideration is more a product of usage rather than size.
I also suspect that any difference in overheads/benefits/etc on small tables would be so minuscule as...
November 2, 2012 at 11:20 am
You could also try running DBCC UPDATEUSAGE & then checking stated table sizes again.
When the db's not in use though.
November 2, 2012 at 10:58 am
Hi,
How is the date/time being entered for the parameter & how is the time portion being lost?
You can use text, then convert/cast the parameter within the report code.
You'll have to...
November 2, 2012 at 10:43 am
And is the database on the default instance or a named one?
November 2, 2012 at 4:27 am
dwain.c (11/2/2012)
Answer: ambiguous column
Question: What is the error message you get when you don't sufficiently qualify a column reference with the associated...
November 2, 2012 at 4:24 am
Lee Crain (11/1/2012)
If I create a new index to more effectively support a query in a stored procedure, what is the most appropriate action to take (if any action is...
November 1, 2012 at 11:07 am
GSquared (11/1/2012)
November 1, 2012 at 9:14 am
Yep the text will display as normal.
If you want underlined & blue, just format the textbox to that.
October 31, 2012 at 5:30 am
No problem, hope you get it working as desired!
October 31, 2012 at 3:49 am
Just remove the B.Source field from your outer SELECT & GROUP BY
October 30, 2012 at 7:21 am
@anthony-2 - you wait a whole 43 minutes and then 2 come along at once! 🙂
October 30, 2012 at 6:07 am
You'll need to combine CASE and GROUP BY, something like this:
SELECT CASE WHEN Total >= 0 AND Total < 100 THEN
WHEN Total >= 100 AND Total < 1000 THEN...
October 30, 2012 at 6:05 am
Yep, it's done by creating two folder in the root of the reportserver.
You could then provide the URL's direct to the folder to the relevant team, rather than just http://localhost/Reports
You...
October 29, 2012 at 3:48 am
Start from the right:
right(fieldname, 10)
If you want to drop the '.' as well:
left(right(fieldname, 10), 9)
Works in vb and SQL.
October 25, 2012 at 10:52 am
Not sure that you can do something like that, but you can do URL's to take you to a specified folder, like this:
http://localhost/Reports/Pages/Folder.aspx?ItemPath=%2fteamA
Is that any good to you?
October 25, 2012 at 10:45 am
Viewing 15 posts - 706 through 720 (of 1,193 total)