Viewing 15 posts - 1 through 15 (of 97 total)
@Luis Cazares
Your code is faulty. That STUFF is...
June 28, 2017 at 9:59 am
June 6, 2017 at 8:34 am
June 6, 2017 at 8:16 am
Here is a simple stored procedure that will do basically the same thing:CREATE PROCEDURE [dbo].[spHtmlFromTableEmail]
@database varchar(100),
@schema varchar(5)='dbo',
@table_name varchar(100),
@columns_list varchar(8000)='ALL',
@subject varchar(100)='',
@body...
June 5, 2017 at 7:40 am
Now, that's interesting! I'd be really curious to see how you do that.
Simple, I am connecting to the source sever, whatever platform it may be, querying it, or downloading...
June 13, 2016 at 9:43 am
I have been using Python 3.* for few years now and I think is the best auxiliary tool for a DBA. You can do anything you need and not only...
June 13, 2016 at 8:42 am
And because the whole "trick" is using the dm_exec_describe_first_result_set_for_object function I directly tried it with sp_who and sp_who2 and again, for sp_who2 doesn't work, it returns on empty row with...
March 22, 2016 at 10:38 am
This doesn' work:
SELECT
*
INTO #result
FROM
OPENQUERY([LOCALHOST], 'EXEC sys.sp_who;')
select * from #result
Msg 7202, Level 11, State 2, Line 2
Could not...
March 22, 2016 at 10:29 am
rcowley 35231 (8/27/2014)
What I can't figure out, is why SQL-B worked when using the GUI, but not when using the command line. (Starting to lose faith in this training...
August 27, 2014 at 1:55 pm
Do not install them at the same time, if that is what you did. Another thing is that it is possible that running the command line generates the problem. I...
August 27, 2014 at 1:16 pm
And the answer is easy to find again from that smart guy called "Google". If you search for:
hiper-v guest internet access
you will get
http://superuser.com/questions/469806/windows-8-hyper-v-how-to-give-vm-internet-access
However if you do that it...
August 25, 2014 at 3:18 pm
From Google search:
August 22, 2014 at 11:20 am
In VirtualBox you can select a VM from the list (it has to be shut down when you do that and not in a saved state) and then right click...
August 22, 2014 at 10:21 am
I was able to install all the servers described in the prep book using the instructions from the book. In my case instead of Hiper-V I used the Oracle VM...
November 25, 2013 at 10:01 am
David McKinney (8/2/2013)
Before my post, I did in fact (quickly) read through all the comments...and the month function was mentioned a number of times already. I didn't see any...
August 2, 2013 at 8:30 am
Viewing 15 posts - 1 through 15 (of 97 total)