Viewing 15 posts - 3,361 through 3,375 (of 13,882 total)
So you are asking us to invent lies for you? Sorry, but I won't do that and I doubt that Sue will either.
Have some professional integrity and tell the truth...
September 9, 2019 at 10:42 pm
With that much experience, you should already have encountered plenty of relevant technical and organisational issues as part of your work. Go ahead and use those!
September 9, 2019 at 9:23 pm
If I Google that error, there are a lot of hits. Have you tried following some of the suggested resolutions?
September 9, 2019 at 6:50 pm
Here's a quick solution. There are more elegant ways of getting there, but I'm a little short of time.
DROP TABLE IF EXISTS #t1;
CREATE TABLE #t1
(
...
September 3, 2019 at 2:25 pm
Hello,
I need to process stock information by day, but the database stores the info per week, using a column for each day.
I've tryed using unpivot but I need to...
September 3, 2019 at 1:39 pm
I think it's just a misleading error from SQL dump, can it be ?.
More info - Package works fine when running from Visual studio. Only on the server when ...
September 2, 2019 at 1:45 pm
What does the All Executions report show?
August 31, 2019 at 11:39 pm
How far can they get? Can they run reports too?
August 30, 2019 at 4:03 pm
I thought that it was open only to authenticated users. Are you saying that unauthenticated users have access?
August 30, 2019 at 3:51 pm
Your table design is not normalised.
How about using something like (UserId, QuestionNumber INT, Response CHAR(1))?
Then your query becomes easy. And increasing the number of questions in future does not require...
August 30, 2019 at 3:49 pm
Here's a code sample which demonstrates the technique:
DECLARE @SomeText VARCHAR(50) = '1 2 3 4 5 blah blah';
SELECT @SomeText
...
August 27, 2019 at 7:55 pm
Replace the spaces first, then read the first 5 characters of the replaced string ...
LEFT(REPLACE())
August 27, 2019 at 7:34 pm
Many Thanks! Last question, for the Junction table do I want to store a record for all possible language per user? Or only the languages they have selected only?
Only...
August 27, 2019 at 4:34 pm
This is the sort of thing:
DROP TABLE IF EXISTS #User;
DROP TABLE IF EXISTS #Language;
DROP TABLE IF EXISTS #UserLanguage;
CREATE TABLE #User
(
UserId INT NOT NULL...
August 27, 2019 at 2:04 pm
Your first 'query' is actually 10 separate queries producing 10 discrete result sets.
Assuming you're just going to UNION ALL the first query, this is still impossible to solve without adding...
August 27, 2019 at 12:48 pm
Viewing 15 posts - 3,361 through 3,375 (of 13,882 total)