Viewing 15 posts - 616 through 630 (of 2,356 total)
Not really, the point is for them to be unique.. so; it does this with ints, what about GUIDs?
Identities are not unique. I can insert the value "1000", as...
December 9, 2021 at 3:55 pm
So, if I created a test table right now, and made an identity column, added 10 rows to it, then rebooted the server, and added another row, you're saying...
December 9, 2021 at 3:46 pm
...is that actually a thing? restarting SQL Server increments identity fields by 1000? I've never seen that and it doesn't sound like a thing? Maybe I'm not understanding the...
December 9, 2021 at 3:37 pm
Hi
Doing some testing on a server that has 2 node AG setup. Secondary is set to Read-Intent-only. We are using the AG listener name to connect the application.
If there...
December 9, 2021 at 2:48 pm
Hi,
Sorry rookie mistake, I edited the post to show the table info, hopefully that helps..Thanks
You've been around long enough to know this. In my signature is a link that...
November 29, 2021 at 8:02 pm
What is the cause of the failure? Are you attempting to prevent the failure, and handle it properly? That may require a lot of work.
If you use "go to step...
November 29, 2021 at 7:12 pm
Yes- its homework (important one)
pgadmin is the software i use,
this is what i try so far-
SELECT users.users_id, users.first_name, users.last_name, users.gender, deposit.time_stamp, SUM(deposit.amount) AS TotalAmount FROM users
INNER JOIN deposit
ON users.user_id...
November 29, 2021 at 4:08 pm
Ah, it's asking you to do a LEFT JOIN and then deal with the NULL values to arrive at the value of zero (0) for anyone who doesn't...
November 29, 2021 at 3:58 pm
"...It is my opinion that the first syntax is best avoided, as I think it is not absolutely clear what the target is..."
How is "update dbo.tablename" unclear ?
I think...
November 29, 2021 at 3:52 pm
Been given a new server running Win 2019 & SQL 2019 unable to run bat jobs with SQL Agent
So to try & simplify & understand what is happening have...
November 29, 2021 at 3:40 pm
I see SQL as a query language, used to store and retrieve data. However, there are now many versions of new words with different features. Now I am using...
November 29, 2021 at 3:37 pm
"All is naught for not"
Or you can directly convert a NULL value to a string literal directly from the table with the ISNULL() function:
SELECT SUBSTRING(ISNULL(txt,'NULL'),1,2), txt from MyTable
Why would...
November 29, 2021 at 3:25 pm
Why does this seem to apply to so many things these days? It's not just learning a programming language.
Thanksgiving morning, I received a Teams message from an offshore resource asking...
November 29, 2021 at 3:20 pm
What's PGADMIN?
Is this homework?
What have you tried? Can you show us what you have attempted?
Can you take a look at this article, which describes how to post a question so...
November 29, 2021 at 3:03 pm
It backups the other databases. I asked it not to ignore any , but still leaves out the one in the Availability Group? thank you
So I will ask...
November 26, 2021 at 3:23 am
Viewing 15 posts - 616 through 630 (of 2,356 total)