Viewing 15 posts - 346 through 360 (of 629 total)
you can get in if you are A an administrator on the box and you selected mixed or windows authentication mode during install. if you selected something other then...
June 28, 2010 at 1:58 pm
k I am sure there is a better solution for this that would require less code and no temp tables but this works at anyrate.
declare @t table
(PartNum varchar(3), ServerA char(1),ServerB...
June 28, 2010 at 1:46 pm
you can certainly veiw all of those in SSMS. as for getting a description you really would have to look at each one and see what it does....
June 28, 2010 at 1:23 pm
get the rows affected by what?
June 28, 2010 at 9:02 am
I have a SP as follows I have been running this for a while. It is combined with a few other scripts that run on a daily basis and...
June 28, 2010 at 8:22 am
Do you have a question about that or are you just makeing a random comment?
June 28, 2010 at 8:16 am
your case statement is not structured quite right. Try the below it should work fine.
SELECT
CASE
WHEN i is NULL THEN 'Is Null' -- This will never...
June 28, 2010 at 8:11 am
I don't think this is a yes or a no answer. There are times when I can achieve something very effectivly though a stored procedure and there are also...
June 25, 2010 at 2:57 pm
if you change it to datetime and then change your insert to inlcude the nano seconds it will break.
that is why the convert was needed. When you instert 06/22/10...
June 25, 2010 at 2:45 pm
falgunoza,
If the data was stored as smalldatetime I doubt he would be having this problem to start with. It is fairly typical to have to do a convert in...
June 25, 2010 at 2:15 pm
you had one two many criteria in your group by also I would move the having to a where clause.
declare @table table (AdId int, class int, Origdate datetime,totalpaid numeric (10,2))
insert...
June 25, 2010 at 2:13 pm
I am not sure what you mean by convienant but the tools are far more powerful than dts.
I also understand about it being a simple job I am...
June 25, 2010 at 1:51 pm
move the date parameter to a where clause and that should take care of it.
SELECT DISTINCT A.Class,
CAST( CONVERT( CHAR(8), A.Origdate, 112) AS DATETIME),
SUM(A.totalpaid) As AmtPaid
FROM dbo.ad A
where CAST( CONVERT( CHAR(8),A.Origdate,...
June 25, 2010 at 1:28 pm
All those in favor of screeaming say I
Knock
The screaming passes!
June 25, 2010 at 1:20 pm
I think that depends on how much data you are copying and what is going on in yoru servers. for my money though I would strongly encourage you to write...
June 25, 2010 at 1:15 pm
Viewing 15 posts - 346 through 360 (of 629 total)