Viewing 15 posts - 4,366 through 4,380 (of 6,038 total)
If you want no-fuss upgrades to the latest service pack and bug fixes, then perhaps SQL Azure is the way to go.
October 10, 2014 at 7:23 am
-- query allocated temp tables with record count and size.
use tempdb;
select o.type_desc
, substring(o.name,1,charindex('__',o.name)+1)+right(o.name,12) table_shortname
, si.name index_name
, case si.index_id when 0 then 'HEAP' when 1 then 'CLUSTERED' else 'NONCLUSTERED' end index_type
,...
October 9, 2014 at 7:54 am
We've already seen SQL Server move to a pace that releases new versions every two years and bimonthly patches to fix issues. Imagine that we could get patches even more...
October 9, 2014 at 7:24 am
TheSQLGuru (10/7/2014)
There are some very nice threads here on SSC.com about...
October 8, 2014 at 7:18 am
😉
Evil Kraig F (10/7/2014)
djj (10/7/2014)
Not because I suggested it, but a...
October 7, 2014 at 1:37 pm
The following approach assumes the same list of IDs as a comma seperated set. It does not involve a temp table or dynamic sql, and should keep a fixed execution...
October 7, 2014 at 11:34 am
Luis Cazares (10/7/2014)
Eric M Russell (10/7/2014)
October 7, 2014 at 8:31 am
ramana3327 (10/7/2014)
Hi,Is there any way to find out the password for the remote login of the Linked server
The system table sys.sql_logins contains a column called [password_hash] and sys.sysoledbusers contains a...
October 7, 2014 at 8:17 am
Gary Varga (10/7/2014)
Eric M Russell (10/7/2014)
Luis Cazares (10/6/2014)
Miles Neale (10/6/2014)
October 7, 2014 at 7:46 am
Luis Cazares (10/6/2014)
Miles Neale (10/6/2014)
October 7, 2014 at 6:57 am
Do they have the exact same SQL Server version and service pack level?
October 6, 2014 at 2:11 pm
sqldriver (10/6/2014)
Eric M Russell (10/6/2014)
sqldriver (10/6/2014)
October 6, 2014 at 11:22 am
sqldriver (10/6/2014)
October 6, 2014 at 10:54 am
sqldriver (10/6/2014)
Specifically:
Assigning workable values to parameters/finding out where they're passed from or stored
Heavy use of temp tables/table variables/real tables that get truncated
Verifying results
Bonus points if it's...
October 6, 2014 at 9:47 am
Viewing 15 posts - 4,366 through 4,380 (of 6,038 total)