Viewing 15 posts - 31 through 45 (of 62 total)
Updating as a function....probably not very efficient for large data sets...
--test table creation
CREATE TABLE TEST (c1 varchar(128))
--dummy data
insert into test (c1) values ('0154 6548647 11235')
insert into test (c1) values ('0154...
June 12, 2014 at 11:09 am
What kind of output are you looking for?
declare @string varchar(500) = '1564 163546 10352 124 142587'
declare @nSpaces int = LEN(@string) - LEN(REPLACE(@string,' ',''))
declare @i int
while @nSpaces > 0
BEGIN
SELECT @i =...
June 12, 2014 at 10:54 am
This has something to do with UAC I guess. I can reach local cluster information in an elevated powershell session..
May 20, 2014 at 1:57 pm
Andrew G (1/16/2014)
Do you have any SQL aliases setup on your machine?(Run cliconfg.exe)
That was it. Awesome, thanks!
January 17, 2014 at 6:24 am
Turning off Remote DAC causes both apps in question to fail to connect entirely. This only occurs from my machine. I checked firewall rules, no luck there. ...
January 16, 2014 at 6:48 am
Yeah, I appreciate the response. The servers are using dynamic ports, so that is not the case. Additionally, I've noticed another 'application' (a series of powershell scripts) I've put...
January 15, 2014 at 1:18 pm
Can you change the service account?
December 19, 2013 at 2:17 pm
Did you create additional filegroups? Did you create extra files and add them to the primary FG?
December 19, 2013 at 2:14 pm
Disregard, user error. I had been tinkering around with script() functionality, but never changed my ps script back to querying the database.
November 20, 2013 at 9:34 am
Yes definitely the quickest. OP, are you using mixed mode authentication or strictly Windows authentication? I'm having issues with SQL logins and the encrypted passwords becoming corrupt. ...
November 20, 2013 at 7:31 am
I'm working on this problem as well. The reason this does not work is because the output from both stored procedures are different.
sp_helpdb outputs its results to...
November 19, 2013 at 1:41 pm
here you go:
October 28, 2013 at 12:08 pm
The developer edition is identical to Enterprise edition but with different licensing requirements and costs.
You can migrate a database from 2008 to 2008 r2, but not the other...
September 17, 2013 at 11:20 am
So this system is a vast modular monitoring system. The odd thing is that many of the other modules work totally fine. I added some logging to this particular...
August 19, 2013 at 1:44 pm
Got it
$RecoveryModel = "$($DatabaseObject.RecoveryModel)"
August 9, 2013 at 11:42 am
Viewing 15 posts - 31 through 45 (of 62 total)