Viewing 15 posts - 1,021 through 1,035 (of 3,489 total)
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
What I'm trying to get at is this: Is there another way of doing this search?
All the NOT LIKE and NOT IN clauses are going to kill performance. Think...
February 26, 2019 at 12:42 pm
(Maybe I should have read more carefully!)
Those NOT LIKE and <> s are going to cause table scans. Performance will be brutal.
February 26, 2019 at 10:19 am
I'm probably going to get grief for saying this, but have you considered creating a view containing the filters you always use and then querying that? I freely admit that...
February 26, 2019 at 9:54 am
Before I suggest anything, I'd like to be sure I know the problem. There's a really good article on Subclassing by Rebecca Riordan (but she's implementing it in Access -...
February 24, 2019 at 7:55 pm
Okay.
SSIS just baffles me. How much RAM am I supposed to have for this? If I open a Script task, it takes like 15+ seconds to close again. WTH???!!!...
February 24, 2019 at 4:19 pm
February 24, 2019 at 3:44 pm
Viewing 15 posts - 1,021 through 1,035 (of 3,489 total)