Viewing 15 posts - 21,286 through 21,300 (of 59,072 total)
below86 (3/12/2015)
Jeff Moden (2/19/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
March 12, 2015 at 10:21 am
One of the things I have running is a PerfMon that takes a sample every 15 minutes. I use PerfMon because I'm still currently stuck in the world of...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2015 at 8:00 pm
smoham22 (3/4/2015)
spid went away after the...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2015 at 7:51 pm
Luis Cazares (2/26/2015)
Jeff Moden (2/26/2015)
Moin Ul Haque (2/26/2015)
Jeff Moden (2/25/2015)
Moin Ul Haque (2/25/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2015 at 7:46 pm
Tac11 (3/9/2015)
Since BLOBs live in different table, if I want to know 'what's the size of each row?' does the 'Data' contains (from sp_spacesued 'tablename') BLOBs too? And what...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2015 at 7:13 pm
I have to ask... why are you trying to do this to begin with? What is it that you're actually trying to do with the .BAK files?
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2015 at 7:09 pm
Correct but I do have to thank you for taking the time to amplify your answer. Well done.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2015 at 6:58 pm
Apologies for the very late reply.
To the best of my knowledge, ragged right doesn't add a space or any such thing but I question the use of ragged right for...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2015 at 6:55 pm
PHYData DBA (2/26/2015)
Mark Hickin (1/17/2006)
I think it's worth making the point that this approach does nothing to combat what is fundamentally bad about cursors. All we have done here is...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2015 at 6:48 pm
HookSqlDba7 (3/11/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2015 at 6:29 pm
Andrew Pankov (3/2/2015)
I tried OPENDATASOURCE instead of OPENROWSET.
SELECT * FROM OPENDATASOURCE ('Microsoft.ACE.OLEDB.12.0', 'Data Source=\\server\share\filename.xls;Extended Properties="Excel 12.0;IMEX=1;HDR=NO;"')...['2014$']
It's running ok again when sql server is...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2015 at 5:56 pm
See the following article:
http://www.sqlservercentral.com/articles/Crosstab/65048/
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2015 at 4:47 pm
suresh0534 (3/9/2015)
I got the Solution.
Below is the Solution.
DECLARE @str VARCHAR(400)
--Add your specialcharacters here
DECLARE @specialchars VARCHAR(50) = '%[~,@,#,$,%,&,*,(,),.,!^?:]%'
SET @str = 'KRA!NTHI@#KUMAR, KU%^?MAR GO~()$U.:D'
WHILE PATINDEX( @specialchars, @str ) > 0
---Remove special...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2015 at 6:23 pm
Gosta Munktell (3/10/2015)
JeffI apologize for the too short and provocative statements.
On that subject, you're a good man for coming back on that. Thanks a huge amount, Gosta.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2015 at 8:11 am
Thanks for your efforts, Gosta. I really appreciate it.
If we take a look at the following section of the code...
cmd.CommandText = " CREATE TABLE [dbo].[Test]( " & _
"[Name]...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2015 at 8:09 am
Viewing 15 posts - 21,286 through 21,300 (of 59,072 total)