Viewing 15 posts - 11,911 through 11,925 (of 26,486 total)
You can find some useful date routines here: http://www.sqlservercentral.com/blogs/lynnpettis/2009/03/25/some-common-date-routines/.
May 16, 2012 at 3:20 pm
You may want to look at the code behind the procedure and see if you can use it to capture the information you need to a set of tables.
May 16, 2012 at 3:17 pm
Unfortunately, that only captures the first result set. Not sure how to capture the rest of them.
May 16, 2012 at 3:16 pm
here:
SELECT IDENTITY(INT,1,1) AS RowNum, *
INTO #MyFiles
FROM OPENROWSET('SQLOLEDB','Server=yourserver;Trusted_Connection=Yes;Database=YourDatabase',
...
May 16, 2012 at 3:12 pm
mw112009 (5/16/2012)
Is there anyway that you could capture the output of sp_help <table_name> to some table. You know what I mean ?
There is a way, using OPENQUERY. I just...
May 16, 2012 at 3:01 pm
Lynn Pettis (5/16/2012)
halifaxdal (5/16/2012)
I have a sp, which will create a temp table and the temp...
May 16, 2012 at 2:55 pm
If you know the data in the TEXT column is not longer than 2000 characters, sure. You change it to varchar(max) instead.
May 16, 2012 at 2:52 pm
marclas (5/16/2012)
i have this sql proc
CREATE PROCEDURE dbo.ListeLettreFichier
-- Add the parameters for the stored procedure here
@DateDebut datetime,
@DateFin datetime
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with...
May 16, 2012 at 2:49 pm
halifaxdal (5/16/2012)
I have a sp, which will create a temp table and the temp table's columns...
May 16, 2012 at 2:45 pm
CELKO (5/16/2012)
Unh? I am the guy who tries...
May 16, 2012 at 2:39 pm
If you don't have the media, you aren't going to be able to install another instance. There is no "clone this instance" command to create another instance of MS...
May 16, 2012 at 1:49 pm
capn.hector (5/16/2012)
mtassin (5/16/2012)
Brandie Tarvin (5/16/2012)
Okay, now you've peaked my interest. How do you do the help entry? Does it just do a PRINT? Or a SELECT? Or is there some...
May 16, 2012 at 1:41 pm
The same way you installed the default instance only this time you give it a name.
May 16, 2012 at 1:39 pm
Viewing 15 posts - 11,911 through 11,925 (of 26,486 total)