Viewing 15 posts - 4,561 through 4,575 (of 7,187 total)
The only thing I can think of is that there's some anomaly in your Numbers table. What does this return?
select MIN(number), MAX(number), COUNT(number)
FROM Utility.numbers where number <= 96
John
April 20, 2012 at 6:57 am
Does this help, or is there something in particular you don't understand about sp_send_dbmail?
John
April 20, 2012 at 6:20 am
Are you really using SQL Server 2000? Works for me on SQL Server 2008. Could be something to do with the way your dates are being interpreted. ...
April 20, 2012 at 5:32 am
SSIS is probably the way to go here. Otherwise, create a table with the same columns and data types as the DBCC output, and do INSERT INTO MyTable ('EXEC...
April 20, 2012 at 5:09 am
If you're using the query you just put into your original post, that's an INNER JOIN, and it will only show you the similarities, in the same way that INTERSECT...
April 13, 2012 at 6:50 am
Yes, I think you just need to lose those parentheses. You can actually shorten it even further, like this:
CASE Fruit
WHEN 1 THEN 'Apple'
WHEN 2 THEN 'Banana'
ELSE 'Cherry'
END AS Word
You...
April 13, 2012 at 6:38 am
You can use INTERSECT to find the similarities, or EXCEPT to find the differences. Or you can use a FULL OUTER JOIN if you want to see the differences...
April 13, 2012 at 6:25 am
patelmohamad (4/13/2012)
and in my procedure i have used SELECT * INTO #TempTable FROM Devices orINSERT INTO #TempTable SELECT * FROM Devices
so how do i overcome with the issue.?
By enumerating...
April 13, 2012 at 6:07 am
patelmohamad (4/13/2012)
before posting My question on Sqlservercenteral.com i have already tried many of the alternate things,but no luck.
In that case, please will you post everything you've done so far,...
April 13, 2012 at 4:18 am
Ritesh
The package name is just the path and the filename - something like x:\MyDir\MyPackage.dtsx. There are no command line switches. If you need to configure your package you'll...
April 12, 2012 at 7:38 am
Ritesh
Just use an expression to set the name of the package in the Execute Package task. That's equivalent to passing in a parameter.
John
April 12, 2012 at 7:04 am
As far as I know, that isn't possible, since it would compromise the inherent security of Windows authentication by exposing the password. You could have a look in connectionstrings.com...
April 5, 2012 at 8:50 am
Those decimals at the ends of the rows don't convert into datetime values, I'm afraid. But seriously, I really think full-text indexing is the way to go on this....
April 5, 2012 at 6:57 am
That's closer, but we need the actual values in the insert statements. Do you see why? Somebody can just run your CREATE TABLE statements, then run your INSERT...
April 5, 2012 at 4:24 am
Andrew
I was being facetious - pointing out that it's always better to do your backups and restores through the command line than go through the fiddly GUI wizard. That...
April 5, 2012 at 4:20 am
Viewing 15 posts - 4,561 through 4,575 (of 7,187 total)