Viewing 8 posts - 1 through 8 (of 8 total)
This is great - just wish you could change your username now.
January 14, 2023 at 12:42 pm
No, I am referring to the username that is used when logging in, not the Display Name. You cannot change the username for the login.
April 6, 2022 at 9:24 pm
Why can't we change the username? It's 2022 for petes sake. This is annoying for members that have been around for years.
April 6, 2022 at 3:30 am
I should've written the complete update statement:
Parameters:
@StoreID int,
@CategoryID int,
@ReferenceID int = NULL
UPDATE MyTable
Set MyStatus = 'Closed'
WHERE StoreID = @StoreID
AND MyCategoryID = @CategoryID
AND MyStatusID IN ('Open', 'Acknow')
AND (@ReferenceID IS NULL OR...
November 9, 2011 at 8:18 am
Jeff,
I am looking at your sample and I have to ask one question:
By using master.sys.all_columns, aren't you limited to 1000 days?
I am looking at generating a row for each date...
November 1, 2011 at 1:21 pm
Where is the minimum of 6 specified? Was I sleeping? I was thinking the same as the previous post but didn't understand where 6 came from?
October 18, 2011 at 2:43 pm
Looks like I solved this issue by doing the following:
Connected to the master as sa.
Executed the command: GRANT IMPERSONATE ON LOGIN::mylogin to mycallerlogin;
Then in my stored procedure did a...
September 13, 2010 at 1:46 pm
Viewing 8 posts - 1 through 8 (of 8 total)