Little Security Issues
There's a trend for smaller laptops called netbooks to make traveling with computers easier. However these devices may result in more security issues. Steve Jones comments on some of the problems.
There's a trend for smaller laptops called netbooks to make traveling with computers easier. However these devices may result in more security issues. Steve Jones comments on some of the problems.
There's a trend for smaller laptops called netbooks to make traveling with computers easier. However these devices may result in more security issues. Steve Jones comments on some of the problems.
Got a new database you know nothing about? Here's my basic proposal on how to find interesting tables in it.
Join MSAS Architect Bill Pearson as he leads the hands-on creation of a simple bar chart based upon an Analysis Service data source.
Using Excel as a tool for data mining and predictions is very powerful. Learn how to take advantage of SSAS in SQL Server 2005 with Microsoft Office Excel 2007.
With the current economic downturn, many of us are wondering if we will still have a job by the end of this new year. Although DBAs are still in demand, no DBA job is 100% immune from layoffs. Brad suggests that now is the perfect time to invest in yourself.
After you complete an upgrade to SQL Server 2008, Brian Knight goes over some things you might want to do first.
We would like to update the user, role, and user role tables automatically from Active Directory. Ideally we'd like an SSIS package that we could schedule and/or run on demand to take care of the update. Can you provide an example of how to do this?
By Steve Jones
At the recent Redgate Summit in Chicago, I demo’d (lightly) the ML based Alert...
By Steve Jones
los vidados – n. the half-remembered acquaintances you knew years ago, who you might...
By Brian Kelley
I will be leading an in-person Certified Information Systems Auditor (CISA) exam prep class...
FARE Labs provides nutritional testing for food items and agricultural goods in order to...
I'm trying to get this string_agg to put all the 'comments' into one result...
Comments posted to this topic are about the item Vectors in SQL Server 2025
What values are returned from this code?
CREATE SEQUENCE NumericSequence
AS NUMERIC(5,1)
START WITH 1.0
INCREMENT BY 0.1;
GO
SELECT NEXT VALUE FOR NumericSequence
GO
SELECT NEXT VALUE FOR NumericSequence
GO See possible answers