Viewing 15 posts - 871 through 885 (of 1,124 total)
SELECT REPLACE( SomeColumn, SPACE(1), '' ) FROM SomeTable
November 23, 2007 at 7:47 am
Check which step is failing in job history..
November 23, 2007 at 7:41 am
I forgot which forum i'm in....
Just convert the table variable into temporary table....
November 23, 2007 at 7:41 am
Needed a lot of formatting...(I just can't read the messed stuff)
And also the left join you've used is actually would turn into an inner join
because of where filter...which this...
November 23, 2007 at 7:07 am
1. SELECT FULLTEXTSERVICEPROPERTY('ResourceUsage')
2. Yes
November 23, 2007 at 6:48 am
You could use sp_executesql procedure....
DECLARE @TotalRows INT
DECLARE @SQL NVARCHAR(1000)
SET @SQL = 'SELECT @TotalRows = COUNT( * ) FROM sysobjects'
EXECUTE SP_EXECUTESQL @SQL, N'@TotalRows INT OUTPUT',@TotalRows = @TotalRows OUTPUT
SELECT @TotalRows
or you...
November 23, 2007 at 6:07 am
What method you have used to import data from excel?
If you've used DTS/SSIS package, right click on the package and go to schedule package then set a desired schedule for...
November 23, 2007 at 5:18 am
Is this job a recurring one?
Is the schedule of job enabled?
Do you find any relevant information in job history or error log?
November 23, 2007 at 4:46 am
SELECTo.name, o.type_desc, p.name, t.name, p.max_length, p.precision, p.scale,
p.is_output, p.is_cursor_ref, p.has_default_value, p.is_xml_document, p.default_value
FROMsys.all_objects o
inner join sys.all_parameters p on o.object_id = p.object_id
inner join sys.types t on p.user_type_id = t.user_type_id
order by o.type_desc, o.name,...
November 23, 2007 at 4:30 am
Check whether this job has a schedule and also enabled.
November 23, 2007 at 4:05 am
There wouldn't be any option for database mail as it is not a service. In fact, it is designed on a queued architecture which uses service broker technologies.
Whenever...
November 23, 2007 at 3:43 am
DECLARE @fX FLOAT, @fY FLOAT, @fM FLOAT
DECLARE @rX REAL, @rY REAL, @rM REAL
SELECT @fX = 2.77555756156289E-17, @fY = 15, @fM = 1.85037170770859E-18
SELECT @rX = 2.77555756156289E-17, @rY = 15, @rM =...
November 22, 2007 at 7:57 am
I was just trying your example, here is what i found.
VB : 5.23853e-032
SQL (with real) : 0
SQL (with float) : 5.23853e-032
This says, that somehow the real data type is not...
November 22, 2007 at 7:35 am
Without using command line utilities, it would be almost impossible to achieve what you want.
One thing you can do is to write to text file for each record...
November 22, 2007 at 7:21 am
Viewing 15 posts - 871 through 885 (of 1,124 total)