Viewing 15 posts - 76 through 90 (of 2,566 total)
one more thing my log file of database (this is not tempdb this is regular db) is increasing like this , should i increase then auto increment?
file is attached.
looks...
June 24, 2024 at 10:42 am
that link kind of says it all - but it is a bit over the top in my opinion.
first thing - separate the 3 permissions mentioned (SHOWPLAN, ALTER TRACE and...
June 24, 2024 at 9:31 am
before worrying about how much you are going to need you should be looking at what tables did grow, and why - is that expected business data being added or...
June 22, 2024 at 7:45 pm
how have you managed to max the VM in terms of storage? unless you have a crap vm (which by the looks of it isn't, as a 32 vcpu is...
June 21, 2024 at 5:31 pm
as mentioned on this, and other of your threads, the index usage gets reset with every restart/failover of the server (and likely also as part of a specific db restore/offline...
June 20, 2024 at 8:45 am
IF @DB1 = 'TestDB' USE TestDB
ELSE IF @DB1 = 'ProdDB' USE ProdDB
don't know what tool you are using to execute the above -...
June 11, 2024 at 7:14 pm
IF @DB1 = 'TestDB' USE TestDB
ELSE IF @DB1 = 'ProdDB' USE ProdDB
don't know what tool you are using to execute the above - but on...
June 11, 2024 at 5:03 pm
Thanks for the feedback.
Jon,
This is a code deploy script file, I'm trying to create. Hence, need to set DB context first then run a few DDLs (see below)
Example snippet:
SELECT...
June 11, 2024 at 5:01 pm
Cluster STXL on ( MANDT, TDOBJECT, TDNAME ) instead of creating all those separate non-clus indexes. If those key columns are not inherently unique, and you can add a...
June 7, 2024 at 6:55 pm
I'd like to run an SSIS package asynchronously from a SQL Agent job step through the the [SSISDB].[catalog].[create_execution] and [SSISDB].[catalog].[start_execution] stored procedures. I need the target package to be...
June 7, 2024 at 3:14 pm
give us the actual explain plan so we can look at it - images do not help us identify potential issues.
June 7, 2024 at 12:32 pm
sure you can - ask a good developer on your company to do it
and you can always try it yourself by googling and trying/testing/adapting the many many examples you can...
June 4, 2024 at 5:53 pm
the registry setting you changed applies to SSAS queries - so it would never work for what you wish.
and it seems that this functionality was broken starting with v18 -...
June 4, 2024 at 7:38 am
Thanks
Steve for the Json references, Phil for the validation, Frederico for the date suggestion.
My workaround is storing it in an nvarchar(max) variable, replace the wanted character and write it...
June 3, 2024 at 4:00 pm
but this being JSON why not use a date format that is more standard (ISO8601).
any software reading the file will most likely parse the value correctly, and you won't...
May 31, 2024 at 1:32 pm
Viewing 15 posts - 76 through 90 (of 2,566 total)