Viewing 15 posts - 706 through 720 (of 2,694 total)
it may have to do with how you are doing it.
passing parameters is as per manual e.g. "&Parametername=parametervalue" at end of url for report.
https://myrshost/ReportServer?/AdventureWorks 2008R2/Employee_Sales_Summary_2008R2&ReportMonth=3&ReportYear=2008
see attached for how it was...
December 20, 2022 at 5:13 pm
code is a snippet - missing parts which on their own can be wrong.
it is creating a proc with prefix SP_ - this should be avoided.
and its dynamic sql inside...
December 19, 2022 at 11:39 pm
what is the CTFP on that server? that will also affect it greatly.
December 18, 2022 at 12:47 pm
I believe your understanding is incorrect.
logical reads are always there - regardless of having a physical read or not, as pages are first read from disk to ram(buffer pool) and...
December 18, 2022 at 12:23 pm
spam - exact copy of a 10 month old post - https://www.reddit.com/r/dataengineering/comments/snzqty/upskill_azure_data_factory_knowledge/
December 16, 2022 at 3:33 pm
you likely can create a unique filtered index to achieve that - with a "where <> 'D'"
create unique nonclustered index xxx on table yyy (username) where ...
December 15, 2022 at 10:06 pm
and what is the issue?
Adding new columns to the table you should know how to do it.
converting cm to feed/inches you should apply the formulas to convert from one to...
December 15, 2022 at 2:08 pm
then give us the code as it is supposed to run - and are you going to be hardcoding and changing the dates everytime it runs? you were already advised...
December 14, 2022 at 3:44 pm
and what is the third server?
you are connecting to SERVER X (where you execute the code) - from this one you do a open query to SRV1 - and that...
December 13, 2022 at 10:11 pm
as you have been advised before do not do the dateadd on the column - instead convert the dates to a value compatible to the source t_stamp and use a...
December 13, 2022 at 5:03 pm
spam - exact copy of DEC 2020 post - https://www.reddit.com/r/SQLServer/comments/k6t4ti/error_when_installing_sql_express_2012/
December 13, 2022 at 4:42 pm
taking in consideration that the database is tiny doing as Jonathan mentioned is likely your best choice. - or alternatively just to an initial ETL from that main db onto...
December 11, 2022 at 7:57 pm
have a look at https://learn.microsoft.com/en-us/sql/database-engine/install-windows/supported-version-and-edition-upgrades-2019?source=recommendations&view=sql-server-ver16 and https://learn.microsoft.com/en-us/sql/database-engine/install-windows/upgrade-to-a-different-edition-of-sql-server-setup?view=sql-server-ver16
and https://www.mssqltips.com/sqlservertip/6686/edition-upgrade-and-downgrade-in-sql-server/ - but risky
December 11, 2022 at 2:06 pm
note that it is better to use "COLLATE DATABASE_DEFAULT" than to hardcode a specific collation (unless there is a need to use a very specific collation) as that will allow...
December 9, 2022 at 10:35 am
I'm sure you have heard of
All the above can help you with
December 8, 2022 at 7:42 pm
Viewing 15 posts - 706 through 720 (of 2,694 total)