Viewing 15 posts - 2,746 through 2,760 (of 59,067 total)
I've found that I really don't need all of that stuff for SQL Server. xp_LoginInfo and sp_validatelogins usually provide what I need. If not, then I go to the Windows...
September 10, 2022 at 9:50 pm
Please learn what a table is. First, we need to fix your non-table.
CREATE TABLE Expenses (emp_id CHAR(10) NOT NULL, pay_date DATE NOT NULL, -- read ISO-8601 formats expense_type VARCHAR(30)...
September 10, 2022 at 9:09 pm
I suspect a couple of accidental CROSS JOINs is the issue. Please run the following code and post the results.
SELECT f1_AllCount = COUNT(f1.PartId)
...
September 10, 2022 at 6:16 pm
Ah... I see what you mean. Guess I'll have to look up how to do a "StaNine" and see if I can make a function or a GP proc for...
September 9, 2022 at 9:03 pm
That procedure just calls some individual functions used to get each Stanine.
If you are looking for a formula for determining the bellcurve, we pay for studies to be done...
September 9, 2022 at 8:26 pm
It has one big select statement that besides tables also joins one view and one table-valued function. It does not have explicit transaction.
But what I can do about blockings?...
September 9, 2022 at 8:13 pm
Thank you Phil for this idea, i will test and let you know if this is working.
It would still be nice to know the need for this particular format. ...
September 9, 2022 at 8:08 pm
Excellent !!! Thank you very much!!
Any chance of us getting a peek at your "StaNine" stored procedure?
September 9, 2022 at 8:06 pm
It's funny how people rail against duplicates in a randomly selected set... it's a part of what "random" is.
September 9, 2022 at 8:02 pm
What’s happening with ASK SSC at the moment, I keep reporting a lot of spam topics but no one is removing them.
Is that site dead now or is Redgate...
September 9, 2022 at 8:00 pm
Also, Azure SQL Database is backed up for you. Further, there is no capability for you to do a traditional backup. Instead, you can create what's called a bacpac,...
September 9, 2022 at 7:57 pm
Thanks, Johan.
September 9, 2022 at 1:47 pm
Thank you for the kind words... it helps MY imposter syndrome. 😀
September 9, 2022 at 1:22 pm
Your internet speed is why I'm suggesting a local backup to a different local machine and then have that do the upload to Azure. It keeps SQL Server...
September 9, 2022 at 12:14 pm
1) create below mentioned table:
Material (materialid, supplierid, tenantid,mcode, is active, createdon) value is the date and time in which row is inserted.
uniquekey (mcode, tenantid)
,isactive is Boolean type and createdon...
September 9, 2022 at 12:08 pm
Viewing 15 posts - 2,746 through 2,760 (of 59,067 total)