Viewing 11 posts - 1 through 11 (of 11 total)
My guess for the SQL Server 2019 release date is July 1st, 2019
April 27, 2019 at 10:53 pm
Amazon link You missed a great opportunity to plug Grant Fritchey's excellent book 🙂
June 6, 2018 at 11:04 am
query does not take into account the table schema so it is fails in my database. It will only work if all tables are in the dbo schema, which is...
April 17, 2018 at 8:38 am
Thanks, but this script only works if you have a local distribution database (and that it is named [distribution]). The publication/article data is available in each publisher DB in [dbo].[syspublications] and [dbo].[sysarticles]...
March 16, 2017 at 10:55 am
I ran the code as is and got:
Msg 207, Level 16, State 1, Line 10
Invalid column name 'A'.
Msg 207, Level 16, State 1, Line 10
Invalid column name 'B'.
Msg 207, Level...
February 26, 2016 at 8:49 am
Thanks. I have verified ServerProperty does work as far back as SQL Server 2000. Couldn't really find a way to differentiate between server and non-server versions so just...
September 29, 2015 at 12:13 pm
Nice script. Three(minor) comments:
First, ** While running the below query if you find any query which ** is repeated in the comment header.
Second, I...
September 23, 2015 at 9:40 am
Nice article. Learned something really useful (and powerful) today. Execution plans and page reads are identical, yet it is much easier to read and maintain now. Thank...
April 2, 2015 at 10:44 am
I use PowerShell in a job step, it is very easy...
$sqlConnection = new-object System.Data.SqlClient.SqlConnection
$sqlConnection.ConnectionString = 'server=myserver;integrated security=TRUE;database=msdb'
$sqlConnection.Open()
$sqlCommand = new-object System.Data.SqlClient.SqlCommand
$sqlCommand.CommandTimeout = 0
$sqlCommand.Connection = $sqlConnection
$sqlCommand.CommandText= "exec...
March 11, 2014 at 8:26 am
For all of you that have perfect data entry personnel, or don't have to deal with 3rd shift temp workers :-), then changing bad data is nothing to worry about....
January 21, 2011 at 8:13 am
the biggest take-away from this article should be: never use an IDENTITY primary key field in a many-to-many (junction, link, bridge, associative, etc.) table. It provides no value...
March 2, 2010 at 2:36 pm
Viewing 11 posts - 1 through 11 (of 11 total)