Viewing 15 posts - 2,626 through 2,640 (of 7,609 total)
Estimating the space requirement for database restores from the backup size can be really misleading. One of the largest problems in this area is that free space in the...
November 8, 2019 at 4:32 pm
Be aware, too, that an int column could require up to 10 bytes to store its value. It's not safe to limit your result from this column to just 8...
November 8, 2019 at 4:18 pm
Now, multiple online articles suggest to use only when data is huge and not for small amount of data
To put it simply, that's just wrong. If you need to create...
November 8, 2019 at 4:17 pm
I'd suggest always using SET XACT_ABORT ON.
(1) Otherwise, you can't be sure which part(s) of a transaction completed and which didn't. Sometimes the entire transaction will be failed even with...
November 7, 2019 at 7:27 pm
Oops.
You still don't need a temp table. Instead:
INSERT INTO ...
SELECT ...
UNION
SELECT ...
UNION
SELECT ...
November 6, 2019 at 10:32 pm
Insert into dbo.StdActiveTable
(StudentName ,
StdId ,
Stdgrade )
select std.Name
,std.StdID
,dp.stdgrade
from dbo.student std
join dbo.department dp
on std.stdid = dp.id
where (dp.isactive = 1) or
(dp.isactive = 2 and sdt.isactive =...
November 6, 2019 at 10:00 pm
Sure, easy to list only those two columns. I was just mirroring what your original query had, since I wasn't sure exactly what you needed.
Personally I'd also make the job...
November 5, 2019 at 8:57 pm
You need a few mods to your code, in particular to limit the results to only those with the current msdb session_id. As a starting point for you, this code...
November 5, 2019 at 6:41 pm
Should this be replaced with a table that has 17 computed columns ?
Yes, if a computed column would work, then that is what you should use rather than a function.
Can...
November 5, 2019 at 6:35 pm
I guess I don't understand why anyone would write software based on the knowledge of novices. If it's important for a novice to be able to maintain something...
November 4, 2019 at 9:11 pm
Nothing to do with full-blown "novices". I would expect people with reasonable experience in SQL Server to know what 0 is, it's the default "base date" in SQL Server. If...
November 1, 2019 at 8:21 pm
Don't, don't, don't dismiss development and say "NO!" to developers.
I learnt this from a wise old network manager who told me that you catch more flies with honey...
November 1, 2019 at 5:15 pm
Along with the excellent suggestions above, also look very carefully at the query plans to see if you're hitting a "tipping point" query. That is, one query that returns, for...
November 1, 2019 at 4:52 pm
There's at least one other thread besides this one where someone used it and got the wrong date, because they added a month after the calc with -1 in it. For...
November 1, 2019 at 4:46 pm
People often learn via patterns.
If I see a pattern like "DATEADD(<time_period>, DATEDIFF(..." in consistent code, I know already what the result of the main computation will be. I don't have...
November 1, 2019 at 2:25 pm
Viewing 15 posts - 2,626 through 2,640 (of 7,609 total)