Viewing 15 posts - 16,231 through 16,245 (of 19,564 total)
Is this more suitable?
Declare @QtdRptEarnSubjDed00varchar(10)
,@QtdRptEarnSubjDed01varchar(10)
,@QtdRptEarnSubjDed02varchar(10)
,@diffvarchar(10)
Select @QtdRptEarnSubjDed00 = 0,@QtdRptEarnSubjDed01=0,@QtdRptEarnSubjDed02=1,@diff=20
Declare @sqlvarchar(max)
Set @sql = 'UPDATE SOMETABLE
SET ' + case WHEN @QtdRptEarnSubjDed00 > 0
THEN 'QtdRptEarnSubjDed00'
When...
March 18, 2010 at 5:41 pm
I recommend you check out how to use the import export tools in SSMS. You can also look at learning SSIS to perform the same task or you could...
March 18, 2010 at 4:57 pm
Nevermind - I finally found it.
March 18, 2010 at 4:56 pm
This may be of use as well
SELECT SERVERPROPERTY ('edition'),serverproperty('productversion')
Eliminate the string building.
March 18, 2010 at 4:55 pm
I would also recommend checking out http://www.sqlservercentral.com/articles/Log+growth/69476/ to help you track down the culprit.
You can setup a job to track your growths and capture the query that is at the...
March 18, 2010 at 4:52 pm
Late last night I saw a question but didn't respond to it because I was shutting down in the intent of answering it today.
I can't find it anymore.
Anybody see a...
March 18, 2010 at 4:45 pm
Steve Jones - Editor (3/18/2010)
I completely agree with you. The Cert test ought to be HARD, I mean very hard, like how do I fix xxx when it's broken, or...
March 18, 2010 at 4:43 pm
Jeffrey Williams-493691 (3/14/2010)
iamthemanx (3/14/2010)
I know for sure is a security stuff, the way SSMS2008 is reading that from the SQL2005 instance....
March 18, 2010 at 4:39 pm
Now it's everybody else's turn 😀
March 18, 2010 at 4:29 pm
JC-3113 (3/18/2010)
on Paul's i get an errorthe linked one works
how do i save it to a file ?
Thanks
Jim
I copy and paste the results. I have not played with other...
March 18, 2010 at 3:57 pm
Jack Corbett (3/18/2010)
It was definitely harder than 70-432, but common sense gets you through it. There...
March 18, 2010 at 3:33 pm
crookj (3/18/2010)
CirquedeSQLeil (3/17/2010)
tosscrosby-60625 (3/17/2010)
crookj (3/17/2010)
Fantastic! (65% and Sunny in Colorado in March :w00t:)Joe
65%???? It's 60 degrees and sunny in Chicago too! Spring fever!
Only 71 today here.
Tomorrow - High of 31...
March 18, 2010 at 3:06 pm
JC-3113 (3/18/2010)
question:is there a way to spool the output to a file so i do not have to copy and paste it into a file ?
Thanks
Jim
Is this for the script...
March 18, 2010 at 3:02 pm
itsmeman (1/19/2010)
Very good advice. I love this site and the books offered for free have helped my knowledge tremendously. Dissecting SQL Execution Plans.... Perfect for tuning SQL.
Can we get those...
March 18, 2010 at 2:54 pm
Viewing 15 posts - 16,231 through 16,245 (of 19,564 total)