Viewing 15 posts - 1,906 through 1,920 (of 2,648 total)
no difference from a performance point of view - backup and restore is still done on the same server, and copy of bak file still happens between the same servers.
however...
August 7, 2019 at 7:29 am
Most was said already - I have gone an extra step with one of our teams and I have DDL triggers that prevent developers from using 3/4 part names in...
August 5, 2019 at 8:04 pm
To check elapsed timer the developers can implement a timer variable - stop timer, stop timer and then get elapsed time - example https://docs.microsoft.com/en-us/dotnet/api/system.timers.timer?view=netframework-4.8
But timer may not help here depending...
July 31, 2019 at 9:48 pm
For your needs i would probably stay out of the gaming laptops and go for the more "normal" ones https://www.newegg.com/p/pl?N=100006740%204814%20600337010%20601331008%20601311244%20600488336%20601323887%20601303722%20600004945%20600004946
This one for example looks better than the one you mentioned...
July 20, 2019 at 11:04 pm
one possible way is to use robocopy - you can set multithread copy (for performance) and you can also set parameters to copy only newer or modified files - you...
July 20, 2019 at 10:39 pm
Also take in consideration that if the non prod servers have a "free" SQL License on that UAT server e.g. developer edition or MSDN licensed editions then whatever data is...
July 18, 2019 at 12:26 am
you can't prevent the trigger from executing but you can control what it does by looking at the event data and filtering if the command is a create snapshot one
within...
July 14, 2019 at 9:14 am
when using linq using https://www.linqpad.net/ is a must - with it you can see what SQL will be generated
within your c# code you can also see what is the sql...
July 13, 2019 at 11:50 am
it is the the user running the sql instance that needs access to the share (or a proxy if enabled and if you are using xp_cmdshell to do the load)
July 12, 2019 at 4:58 pm
have a look at Dbatools - probably has what you need https://dbatools.io/commands/
July 10, 2019 at 7:45 pm
to publish to a Local Server you need to use Power Bi Report Server https://powerbi.microsoft.com/en-us/report-server/
Note that this is a licensed piece of software which you can use if you have...
July 10, 2019 at 4:56 pm
perfectly normal. 2005 install knows nothing about the higher versions and gets confused. possibly doing a alpha compare of "9.0" vs "12.0" and 1 is less than 9.
but why in...
July 8, 2019 at 12:38 pm
error is basically stating that you can not populate the destination column with itself
MyOutputBuffer.AddRow();
MyOutputBuffer.PersonID = MyOutputBuffer.PersonID;
should be
MyOutputBuffer.PersonID = my_source_value;
see the following link for some examples
July 6, 2019 at 6:35 am
normally that high number of heaps means
1 - whoever designed this has a Oracle background and followed the same approach
2 - the tables are staging type tables where having the...
July 5, 2019 at 3:36 pm
one possibility is that an anti-virus is causing that issue - if you got McAfee running disable it
June 25, 2019 at 1:48 am
Viewing 15 posts - 1,906 through 1,920 (of 2,648 total)