Viewing 15 posts - 1 through 15 (of 56 total)
I have preference for keep deleted rows in a history table.(Triger on DELETED copy the rows) could be nice for "Audit Reason" I think.
December 12, 2011 at 2:17 pm
use the same query with a exec sp_msforeachdb ' ... '
November 25, 2011 at 2:39 pm
GilaMonster (11/24/2011)
sysfiles is deprecated, included only for backward compatibility with SQL 2000 and should not be used any longer.
For This reason
http://msdn.microsoft.com/en-us/library/ms178009.aspx
I Thinks use should use this :...
November 25, 2011 at 8:14 am
Take a look on SSIS Stairways. Maybe is good a way to begin if you are new to ssis 😉
October 7, 2011 at 8:14 am
Maybe if you put the exemple of the line wasn't correct, it help to find the error. ANd with correct line for compare issue.
September 16, 2011 at 8:16 am
Carefull when you import. I guess you csv is delimited with "'," and you filed like name with value " james, bla bla" caused the overlap. When you convert specific...
September 12, 2011 at 7:53 am
Maybe you could check for the option "With recompile"
September 9, 2011 at 7:54 am
select right('Test OutPut',charindex(':','Test:123',2)-1)
go
select right('Test OutPut',charindex(':','Test123',2)-1)
go
The second query gave you an Error because don't find ':' and get -1
September 9, 2011 at 7:02 am
Look the return value of charindex. I Think you don't have a':' for the "detail" column. If is the case charindex return 0 -1 = -1 Invalid value.
September 9, 2011 at 6:50 am
I did this operation in the past, because somebody because the SysAdmin delete sql job by error. http://msdn.microsoft.com/fr-fr/library/ms190749.aspx
But you need to disabled the Sql Agent for do this...
September 6, 2011 at 8:15 am
About Certification. Any of use transcender or tool like that for practice ?
September 6, 2011 at 8:07 am
FYI : available in Datacenter edition
http://msdn.microsoft.com/en-us/library/bb933866.aspx
"Last line of the page"
September 2, 2011 at 6:55 am
Viewing 15 posts - 1 through 15 (of 56 total)