Viewing 15 posts - 796 through 810 (of 2,654 total)
for SQL 2008 R2 SSMS was installed as part of the SQL Server installer - you can get it from there.
to avoid installing it on your pc I would check...
August 8, 2022 at 9:25 am
as it would be a unique index I don't believe there would be negative impact on that table (at least not significant).
for the trigger - yes the idea is that...
August 8, 2022 at 6:46 am
instead of a Primary Key you can define it as a Unique Index.
one of your issues is how you ensure that GSN_ID remains unique throughout the table. - a update/insert...
August 7, 2022 at 4:42 pm
see this https://stackoverflow.com/questions/761121/performance-issue-comparing-to-string-format for a small compare rewrite - very specific but it kind of addresses performance.
and then https://hashnode.robinrottier.com/net-6-string-format-performance and https://devblogs.microsoft.com/dotnet/string-interpolation-in-c-10-and-net-6/
main issue with "format" is that it has soo much...
August 7, 2022 at 1:40 pm
another question is why are you converting to NVARCHAR - is your software now going to be used by users that require data that does not fit on a VARCHAR?...
August 7, 2022 at 6:49 am
had you google it you would have found it - its amazing the type of information you get if you search for it instead of waiting for someone to give...
August 6, 2022 at 5:35 pm
it will execute fine without restarting the instance. and effect is immediate e.g. memory setting will apply immediately (unless the first one is a reduction of memory on which case...
August 5, 2022 at 5:47 pm
for majority of uses within SQL Server itself you don't need the numerics formatted that way so as mentioned before the formatting should be done on the receiving UI -...
August 5, 2022 at 3:15 pm
I don't know how you created your text file - but you missed the point. you need to MANUALLY go through each sp, through the object explorer, generate their script...
August 5, 2022 at 2:45 pm
multiple ways - most commons are
August 5, 2022 at 8:20 am
now go through each one of those sp's and see if any of them is populating the table - I should not have to tell you this!!
August 4, 2022 at 9:54 pm
August 4, 2022 at 9:19 pm
and have you bothered going to the manuals and search for the tables I mentioned?
as you mentioned there is a proc that already reads the table in question, if that...
August 4, 2022 at 9:15 pm
try to enable cdc on database manually before kicking the process.
August 4, 2022 at 1:24 pm
please don't create new threads to continue your questions - keep this on the same original thread.
I will advise you to read the sql server manuals for the system functions...
August 4, 2022 at 10:47 am
Viewing 15 posts - 796 through 810 (of 2,654 total)