Viewing 15 posts - 2,956 through 2,970 (of 7,609 total)
What do you mean by 'three-part-naming issues'?
If the table resides in a separate db, then you reference the table you will need to include the db name, either...
February 11, 2019 at 4:29 pm
No. It's random which you get if there are multiple matches. If you want a specific match, write your own code to do that. For example:
February 11, 2019 at 2:27 pm
February 11, 2019 at 1:03 pm
Separate new filegroup(s) are fine, you don't really need a separate db, and you don't want to deal with the three-part-naming issues that a separate db would require.
February 11, 2019 at 11:20 am
February 8, 2019 at 2:44 pm
Effectively yes. If you're updating a single row in a non-columnstore table, then the main row (from the clus index or from the heap) must be read in order to...
February 8, 2019 at 9:00 am
Nah, ISNULL() in a SET is fine. It's only in WHERE and join-related clauses that it makes a difference.
February 7, 2019 at 4:04 pm
February 7, 2019 at 3:27 pm
If you're going to use a name, explicitly specify it as a job name:
exec msdb.dbo.sp_stop_job @job_name = @jobname ;
February 6, 2019 at 7:50 am
February 5, 2019 at 3:03 pm
The column "Totalspace" doesn't exist any more: the columns in the inner query are "minval" and "maxval".
So, something like:
select
databasename, minval, maxval,
...
February 5, 2019 at 2:36 pm
February 5, 2019 at 1:29 pm
Viewing 15 posts - 2,956 through 2,970 (of 7,609 total)