Viewing 15 posts - 5,281 through 5,295 (of 7,636 total)
You can, but direct calls to SQL Agent are a lot worse that direct calls to Service Broker. If you were going to go that route, you might as...
October 14, 2008 at 4:34 pm
TRACEY (10/14/2008)
I see the following DatabaseMail process is shutting downSo if i start it - it fires emails...Then it shutsdown again.
How long does it take before it shuts down...
October 14, 2008 at 4:04 pm
The problem is that "CDT" in the middle. SQL Server does not have UTC data types (maybe in 2008?) and cannot do anything with a timezone. Are all...
October 14, 2008 at 3:55 pm
You want to use either Service Broker or a work table that is then scanned by a polling process running in a separate context (probably a SQL Agent Job). ...
October 14, 2008 at 3:37 pm
psangeetha (10/14/2008)
create table test ( a numeric)
insert into test values (999999999999999999)
This worked.
insert into test values (9999999999999999990) didnt work. So I guess the maximum value for numeric...
October 14, 2008 at 3:22 pm
The thing is, Oracle does not really have binary integer datatypes the way that SQL does. I think that there may be something like PLS_INTEGER which is equivalent to...
October 14, 2008 at 3:15 pm
Seth Delconte (10/14/2008)
October 14, 2008 at 2:55 pm
a2zwd:
Please post your actual code that is failing so that we can test it.
Thanks,
October 14, 2008 at 2:50 pm
I do not think that that is right, Adam. Try executing the following:SET NOCOUNT ON
create table #temp(foo int)
Insert into #temp select 13
Declare @sql Nvarchar(max)
SET @sql = 'SELECT * FROM...
October 14, 2008 at 2:49 pm
You can use TABLESAMPLE, like this:
SELECT *
FROM YourTable TABLESAMPLE (2.5 PERCENT)
However, BOL notes the following limitations of TABLESAMPLE:
You can use TABLESAMPLE to quickly return a sample from a large...
October 14, 2008 at 2:41 pm
psangeetha (10/14/2008)
Thanks. But application people want to know more about the width rather than the storage size. Like in Oracle we say number(38), it can hold 38 digits.
And just in...
October 14, 2008 at 2:29 pm
psangeetha (10/14/2008)
Thanks. But application people want to know more about the width rather than the storage size. Like in Oracle we say number(38), it can hold 38 digits.
Look at Gail's...
October 14, 2008 at 2:26 pm
Not directly, no. The database storage format is definitely different, and there is no way for SQL 2000 to know how to read a SQL 2008 formatted DB.
However, assuming...
October 14, 2008 at 2:23 pm
Viewing 15 posts - 5,281 through 5,295 (of 7,636 total)