Viewing 15 posts - 2,086 through 2,100 (of 2,857 total)
I can think of a few reasons for this, but could you post your full query?
I am not sure if it is that I am running that DMV wrong, but...
October 30, 2019 at 8:51 pm
As far as I know, that should work as long as you are not wiping the disk when you go from 7 to 10. If you wipe the disk, you...
October 29, 2019 at 7:38 pm
I think what you are looking for is something similar to this website:
Basically, you create the objects then throw a query at it. After getting the result, store it somewhere...
October 29, 2019 at 7:22 pm
A nice easy question once you know where to look. Have a look at the table sys.objects for that.
The [name] column shows you the name of the object, the [type_desc]...
October 29, 2019 at 6:02 pm
In the execution plan, are you getting any extra memory grants or spills to tempdb or anything? I expect that something is different somewhere.
And I believe you; I've seen weird...
October 25, 2019 at 9:20 pm
That is very strange. Can you post the execution plan? If not, I'd start by examining that.
My understanding is that comments SHOULD be stripped out when it gets to the...
October 25, 2019 at 8:21 pm
Step 1 is going to be to upgrade your SQL Server unfortunately.
SQL Server 2008 and 2008 R2 are not supported on Windows 10 or Windows Server 2016.
IF the SQL...
October 25, 2019 at 3:38 pm
The (admittedly obscure!) intention of my post was not to criticize your response, but to highlight the fact that in making things dynamic, SSIS slides out of the equation....
October 24, 2019 at 10:04 pm
That is true that it doesn't relate to SSIS directly. My intent with the post was to determine what the end result was and if SSIS could handle it well.
You...
October 24, 2019 at 9:35 pm
It also depends on how "full" your database is. A 400 GB database file that has 1 MB in use will compress most of that. We have a database that...
October 24, 2019 at 9:25 pm
This sounds like it could be handled by linked servers and some dynamic SQL and some fun stored procedures to gather all of the schema level data and compare it...
October 24, 2019 at 9:00 pm
My opinion, overall SSIS is nice and easy to work with. Has a bit of a learning curve and I think as long as you aren't trying to do anything...
October 24, 2019 at 8:29 pm
That sounds like a pretty easy task:
WITH cte AS (
SELECT [RANGE], [STATUS], LAG([DATE]) OVER (PARTITION BY [ID] ORDER BY [RANGE]) AS [PrevDATE]
FROM <table name>
)
UPDATE [cte]
SET [STATUS]='Y'
WHERE [RANGE]='001'...
October 22, 2019 at 9:11 pm
My recommendation would be to try it out. You are licensed for it; give it a shot.
Build up a proof of concept data migration and compare it to the C#...
October 22, 2019 at 8:56 pm
I have only had budget laptops with upgraded parts (such as an upgraded drive).
My HP Envy was problematic from day 1. Had a stuck pixel. Got it returned under warranty...
October 18, 2019 at 7:56 pm
Viewing 15 posts - 2,086 through 2,100 (of 2,857 total)