Viewing 15 posts - 1,156 through 1,170 (of 3,489 total)
I used to work in healthcare, so I totally understand the confidentiality stuff. (Taking the Good Clinical Practices exam after looking at what they were doing nearly gave me a...
December 3, 2018 at 10:42 am
What kind of visual are you using for the subreport? Is it a tablix? I would test it by creating a simple tablix and populating it and see if you...
December 3, 2018 at 9:43 am
Why can't you use a function?
I'd use DelimitedSplit8K and be done... Why the arbitrary requirement? Is this a class assignment or something?.
December 1, 2018 at 1:16 am
Not sure how you would end up with only one record in your subreport. Are you using a parameterized stored procedure as the source for your subreport's dataset? Does the...
November 30, 2018 at 5:30 pm
You probably have to shrink it, but then you'll have to rebuild all the indexes... Good thing it's Friday... might be done by Monday.
November 30, 2018 at 2:10 pm
November 29, 2018 at 6:26 pm
November 26, 2018 at 9:04 pm
If you don't use a date in tabular model, you can't mark the column as a date, so you can't use a lot of the built in time intelligence functions......
November 25, 2018 at 9:49 am
November 24, 2018 at 2:30 pm
A cursor for that is all kinds of overkill. How about a simple not exists subquery?
SELECT *
FROM Employee e
WHERE NOT EXISTS (
SELECT s.EmployeeID
November 24, 2018 at 12:08 pm
(Wait, so you can update directly?)
Wouldn't you have to run this on each column?
UPDATE HumanResources.Employee SET EncryptedNationalIDNumber = EncryptByKey(Key_GUID('SSN_Key_01'), NationalIDNumber);
November 21, 2018 at 10:17 am
You mean by querying the sys.all_columns table and using dynamic SQL to automate it?
November 21, 2018 at 8:46 am
The belwo is my sample table structure and I will be buildinga sample website...
November 20, 2018 at 7:44 pm
Viewing 15 posts - 1,156 through 1,170 (of 3,489 total)