Viewing 15 posts - 1,051 through 1,065 (of 7,467 total)
Last SQLPass ( summit 2014 ) a twitter conversation popped up mentioning Paul White lost (part of) his voice
Jes Borland @grrl_geek-2
@SQL_Kiwi You got your voice back, then?
......
November 12, 2014 at 1:19 am
what connection library are you using?
What's the content of your content file ?
( does it contain the full connection string or just parts of it)
Can you mail the connection string...
November 10, 2014 at 12:45 am
Perry Whittle (11/7/2014)
ALZDBA (11/7/2014)
With SQL2008 (R2 ?) you'll need to modify your connection strings and add the failoverpartner parameter.[assuming your chosen connection library supports the database mirroring parameters
Indeed.
If your connection...
November 7, 2014 at 7:23 am
the 20 characters limit rings a bell, but only for Reporting Server service accounts !
November 7, 2014 at 5:57 am
With SQL2008 (R2 ?) you'll need to modify your connection strings and add the failoverpartner parameter.
http://www.connectionstrings.com/sqlconnection/database-mirroring/
November 7, 2014 at 5:52 am
Simple test !
UPDATE A SET rowbefore = rowafter, rowafter = -1 ;
Select * from a order by TableName ;
UPDATE A
SET rowafter = (SELECT max(sysindexes.rows) FROM sysobjects
INNER JOIN sysindexes ON sysobjects.id...
November 7, 2014 at 5:46 am
Hurray on the upgrade to SQL2014 !
on the other hand, on top of the suggestions of the other repliers:
Did you ever check any variant of snapshot isolation level to avoid...
October 27, 2014 at 7:40 am
did you double check the "slow" instances service account is authorized to use Instant File Initialization ?
October 27, 2014 at 7:27 am
Since the date is in your result set, which date to you want it to have ?
Select EmpName, min( PayDate) as PayDate, WageType, PayRate
from Whatever
group by EmpName,...
October 24, 2014 at 5:39 am
can you share what you have tested and why distinct cannot be used ?
a simple group by on the 4 columns will also work and may even use available indexes
October 24, 2014 at 1:57 am
Spot on for the weak spot detection !
Enjoy your holiday !
September 26, 2014 at 3:46 am
how about this:
/* still using the recursive CTE */
Create table MyTable ( Id int not null, Name varchar(128) not null, IdParent int NULL );
go
Create...
September 26, 2014 at 12:23 am
I guess your interesting read would be Hierarchies on Steroids #1: Convert an Adjacency List to Nested Sets[/url] and the sequels 😉
just solving your simple example using a cte can...
September 25, 2014 at 6:33 am
September 25, 2014 at 6:04 am
apparently just being member of 'public' on a database is enough to be able to script the create database statement. :crazy:
September 23, 2014 at 2:57 am
Viewing 15 posts - 1,051 through 1,065 (of 7,467 total)