Viewing 15 posts - 2,236 through 2,250 (of 13,870 total)
Can you post the (sanitised as needed) definition of the TVF which returns the MemberIds to which the user has access?
January 16, 2021 at 1:38 pm
How is the list of members which a user is permitted to see defined?
Does the members table have a clustered index on MemberId (or whatever you have chosen to call...
January 15, 2021 at 3:33 pm
I see no 'nested loops' here. What do you mean? Looping in T-SQL would require the use of something like WHILE ...
Are you happy that this query may occasionally return...
January 15, 2021 at 10:07 am
... but is this command trying to execute SecureZip on the server and the error is saying the application is not installed on the SQL Server?
Precisely this.
January 14, 2021 at 3:26 pm
@Phil my original post doesn't include but I did in the next post.
Kal
I stated that your sample data did not include EmpId 480.
That statement was correct now and remains...
January 13, 2021 at 10:42 am
not supported by Microsoft and against licensing rules to install a Client only application on a server.
I found the following text here:
Besides the technical problems, you must also consider...
January 12, 2021 at 5:44 pm
Hello everyone,
I am currently looking for a way to create Excel reports that include formulae (probably also Pivot tables and other stuff) from Reporting Services. Searching the web and...
January 12, 2021 at 4:59 pm
Is there a reason for you thinking that tempdb is the best place for your new table? Why not put it into an existing User database instead? Or create a...
January 12, 2021 at 4:49 pm
I do not know the answer, but out of interest, under what circumstances do you choose to use global temp tables in preference to 'normal' session-scoped temp tables?
January 12, 2021 at 11:17 am
Does drive E: exist on the SQL Server machine, or is it a mapped drive?
January 12, 2021 at 11:12 am
It will be difficult for anyone here to help you, based on this limited amount of information & the fact that we have no knowledge of what this RAD tool...
January 11, 2021 at 6:03 pm
Welcome, but please note that this is a SQL Server forum, not an MS Access forum.
Having said that, if you are doing this coding totally within Access, it should be...
January 11, 2021 at 9:23 am
Hi, We've been looking to pull the text from a table in a vendor DB that stores in RTF format. I found a solution on a site but am...
January 11, 2021 at 9:20 am
Blimey, I think I need to stop posting and see a doctor! For some reason, I thought that there was a need to maintain the original file extension.
January 8, 2021 at 5:26 pm
It's not pretty, or fast, but it works:
SELECT
dat.pth
, path2 = STUFF(dat.pth, calc.pos2, calc.pos1 - calc.pos2, 'this')
FROM
(
VALUES ('temp/a/g.txt')
...
January 8, 2021 at 11:50 am
Viewing 15 posts - 2,236 through 2,250 (of 13,870 total)