Viewing 15 posts - 1,006 through 1,020 (of 3,480 total)
No. It's just a visual representation. Use whatever layout you find easier to understand. (Not that it matters in 2019... database diagrams are gone.
March 6, 2019 at 6:36 pm
This is my second case this week where the same query is fast in SSMS...
March 4, 2019 at 9:26 pm
Got data? (Create table scripts, insert scripts)
March 3, 2019 at 8:41 pm
That article helps a lot! However can you tell how I can tell if the report is cached or updated by the report?
How do you deploy the shared dataset?...
March 2, 2019 at 2:05 pm
For starters, I would rename the columns so they mean something. Databases where the column names are just about meaningless (and have the wrong data types) are a nightmare to...
March 2, 2019 at 1:52 pm
This post is 8 years old. Why not start your own post?
And how do you propose to find out what changed by using ROW_NUMBER()? Even if you did...
March 1, 2019 at 9:47 pm
just insert it. SQL Server handles the encrypting of the data before it gets written to the table.
March 1, 2019 at 12:02 pm
Sure. Post the CREATE TABLE scripts too. Should be enlightening.
Then we can all see if you really needed a cursor to accomplish the task.
February 27, 2019 at 8:08 pm
Oh for crying out loud. Why do professors teach you how to use cursors, but not in the proper place? I'd challenge the professor and ask why it can't be...
February 27, 2019 at 5:00 pm
Maybe this article will help?
http://www.sqlblog.nl/dynamic-refresh-ssrs-cache-using-sql/
(Doesn't directly answer your question, but explains how to refresh the cache on a schedule)
February 27, 2019 at 4:35 pm
And you've been using SSRS for how long now?
1. datasets on the RIGHT are for the PROJECT. datasets on the LEFT are for the report you're working on. If...
February 26, 2019 at 9:40 pm
Since you can only round numbers, you'd have to cast the values as a decimal and round those. You can't round a string.
February 26, 2019 at 6:59 pm
Don't think it will work unless the first 2 characters of a the strings are unique, so you wouldn't have something like
Ball
Bath
as members of the set. If...
February 26, 2019 at 5:45 pm
Elegant? That's the standard pattern for this kind of question. AFAIK, that's the way to do it.
February 26, 2019 at 5:43 pm
I think you're missing a table.
Package (PackageID*…)
Server(ServerID*,..)
ServerPkg(ServerID*, PackageID*) (basically the "contents"/inventory of each server)
One way to do it is
(Package CROSS JOIN Server)...
February 26, 2019 at 1:37 pm
Viewing 15 posts - 1,006 through 1,020 (of 3,480 total)