Viewing 15 posts - 241 through 255 (of 6,036 total)
DECLARE @Data TABLE (Name nvarchar(100));
INSERT INTO @Data(Name)
VALUES
('Microsoft Windows NT Workstation 10.0'),
('Microsoft Windows NT Workstation 10.0'),
('Microsoft Windows NT Workstation 10.0'),
('Microsoft Windows NT Server 10.0'),
('Microsoft Windows NT...
November 25, 2020 at 12:25 am
Actually, in Assembler comparison of 2 values is implemented via deducting of one value from another.
So, if you intuitively replace comparison with deduction then it means that you have some...
November 25, 2020 at 12:03 am
Not sure I can understand the request.
can you indicate what do you expect as an outcome?
November 24, 2020 at 7:05 am
Talking about efficiency, using variables and flow control in T-SQL says "defficiency" by itself.
More appropriate T-SQL statements should look like this:
SELECT @Val1 = case when @Var1=@VarA and @Var1=@VarA and @Var1=@VarA...
November 24, 2020 at 6:52 am
Why Microsoft released a less performant FORMAT function to make SQL server look bad? I am sure Microsoft released it from requests by SQL server community.
If it's so bad,...
November 24, 2020 at 3:53 am
Hi. I guess it doesn’t make much difference but the deletes were performed in batches over a 24 hour period.
Thanks,
Phil
If you don’t perform BACKUP LOG every 15 minutes then...
November 16, 2020 at 2:46 am
Hi. I will need to check. I am surprised it is 600+GB.
Phil.
that’s disturbing.
always make sure that you have BACKUP LOG plans on every database in Full mode.
and every database...
November 16, 2020 at 2:42 am
What is the schedule of BACKUP LOG on this database?
November 15, 2020 at 9:52 pm
Check for a job which running every 6 hours around 3 and 9 o'clock.
November 15, 2020 at 3:44 am
From how you describe it your vendor has very limited understanding of how databases work. (It should be "have no clue" really, but let's go with "limited understanding" for now)
saying...
November 15, 2020 at 3:37 am
Plans reflect the actually executed statements. Which were picked according to the logic defined by parameters or any other kind of states as they were at the time of execution....
November 9, 2020 at 1:40 am
Harsh but just. Just like Comrade Stalin.
Joe, when was the last time you walked in a basic software engineering course? Are you sure they still exist? Are you sure “software...
November 5, 2020 at 11:58 pm
I prefer to ditch original rid's and upload the data using natural keys, with new rid generated within the "merged" tables.
unless, it's important to keep a record of the source...
November 5, 2020 at 7:27 am
I must say - storing big documents in SQL Server tables is a bad idea. Storing them inline with transactional updatable data is an extremely bad idea.
if you cannot store...
November 3, 2020 at 12:49 pm
Updating LOB does not remove old value from the storage, it creates a new one and then changes the pointer in the row of the table.
cleaning up happens on some...
November 3, 2020 at 12:39 pm
Viewing 15 posts - 241 through 255 (of 6,036 total)