Viewing 15 posts - 1,711 through 1,725 (of 13,469 total)
ok, using pure string manipulation, can you ASSUME, the value you want is between a tab and the first left parenthesis?
someone will pretty this up with a cross apply, which...
June 10, 2015 at 6:40 am
something like this seems to find matches:
;WITH MySampleData([ID],[CompanyName])
AS
(
SELECT '1','All Season Equipment Ltd.' UNION ALL
SELECT '2','All Season Equipment Ltd' UNION ALL
SELECT '3','West End Housing, Inc.' UNION ALL
SELECT '4','West End Housing, Inc'...
June 9, 2015 at 9:19 am
When you say "encryption" , do you mean Transparent Data Encryption?
or row level encryption, which requires each protected column to have data type changes, and encryption and decryption routines...
June 8, 2015 at 12:18 pm
when you copy pieces, it's so easy to overlook something that was required.
there's always one mor ething that got overlooked, and turns into a constant trickle of research.
i lean...
June 8, 2015 at 9:58 am
info.sqldbamail (6/8/2015)
Thank YouI get your point : 1 FULL Backup + Most Recent Diff Backup + All Cumulative log backups since Last full backup is this correct.
No, that's not right.
To...
June 8, 2015 at 7:14 am
log backups are cumulative, and are not affected by differential, so you cannot go from full + diffs + one last log. it's an either log-or-differential process.
full backup, plus any...
June 8, 2015 at 6:53 am
JeeTee (11/6/2014)
Depending on what's in between ElasticSearch and SQL, a rudimentary .Net application can quite easily de-serialize the JSON before putting it into SQL.
exactly how i do it myself.
Also, there's...
June 4, 2015 at 9:30 am
I think row_number is they way to go here; then you cna just multiply it by five.
WITH CTE as
(
SELECT row_number() over(order by MyPrimarykey) * 5 as myColumn from table
)
SELECT...
June 4, 2015 at 9:26 am
mohanaprabhu.v (6/4/2015)
...
June 4, 2015 at 6:48 am
lduvall (6/3/2015)
June 3, 2015 at 3:14 pm
same thing then, right?
if he is a local admin on the PC in question, he can run the script and take over the SQL instance(s).
if he had 3 instances(ie...
June 3, 2015 at 1:57 pm
if you can rdp or login directly to the server, then you could stop and start the service in sinlge user mode, regardless of whether you are a sysadmin on...
June 3, 2015 at 1:07 pm
are you familiar with SSMS's Registered Servers or Central Management servers?
it does exactly what you seem to be asking, and it's built in.
once you add them in a hierarchy, you...
June 3, 2015 at 12:54 pm
help us help you!
CREATE TABLE and sample data get you help fast!
i put this example together that might help you visualize it.
i got the formula for ounces to grams from...
June 3, 2015 at 5:40 am
Joie Andrew (6/3/2015)
June 3, 2015 at 5:11 am
Viewing 15 posts - 1,711 through 1,725 (of 13,469 total)