Viewing 15 posts - 481 through 495 (of 2,648 total)
I can't say I have ever used RIGHT JOIN. I think it is only in the language for completeness.
March 6, 2023 at 10:53 am
This does the same thing:
Are you sure? I struggle to understand cursors ate the best of times, but I think the set based solution...
March 5, 2023 at 12:46 am
Given the OP stated "I run a script that brings the data that was modified in the last 24 hours from the 3rd party system" I assumed that the data...
March 5, 2023 at 12:21 am
I believe it's acceptable to use either singular or plural names for database table names,
Acceptable, perhaps. But can you name any major RDBMS that...
March 4, 2023 at 2:00 am
I run a script that brings the data that was modified in the last 24 hours from the 3rd party system.
This table contains about 500,000 records for each day.
Then...
March 4, 2023 at 1:44 am
Where do you want to do the process? In Excel or in SQL Server?
It is the tradition on this forum that the poster of the question supplies the data in...
March 3, 2023 at 11:06 am
CREATE TABLE testvisit (
primarydoc varchar(50),
client_id int,
visitdoc varchar(50),
doc_id int,
...
March 3, 2023 at 2:10 am
@jonathan-2 AC Roberts or anyone, do you know if there is a chance to ORDER BY in alphabetical order whatever is a column? Right now they are in a...
March 3, 2023 at 1:09 am
@jonathan-2 AC Roberts or anyone, do you know if there is a chance to ORDER BY in alphabetical order whatever is a column? Right now they are in a...
March 3, 2023 at 12:23 am
I believe it's acceptable to use either singular or plural names for database table names,
Acceptable, perhaps. But can you name any major RDBMS that uses singular...
March 2, 2023 at 8:28 pm
reduce the length to
The numbers should begin with 11. The minimum length of the number should be 10 The maximum length of the number should be 15 Need...
March 2, 2023 at 7:50 pm
I believe it's acceptable to use either singular or plural names for database table names,
Acceptable, perhaps. But can you name any major RDBMS that uses singular table names...
March 2, 2023 at 7:17 pm
DECLARE @RowsToGenerate as int = 10000000
SELECT DISTINCT TOP(@RowsToGenerate) x.Num
FROM (SELECT LEFT('11' + CONVERT(varchar,(CONVERT(bigint,ABS(CHECKSUM(NEWID()))))) + CONVERT(varchar,(CONVERT(bigint,ABS(CHECKSUM(NEWID()))))) ,10+T.RandNum) Num
...
March 2, 2023 at 7:03 pm
Hubert Blaine Wolfeschlegelsteinhausenbergerdorff Sr. won't even be getting his abbreviated name on your database.
March 2, 2023 at 5:30 pm
Definitely remove the word "Table" from the end of your table names. You'll also have Joe Celko coming in and giving you a hard time if you don't!
I believe it's...
March 2, 2023 at 4:44 pm
Viewing 15 posts - 481 through 495 (of 2,648 total)