Viewing 15 posts - 616 through 630 (of 860 total)
xenophilia (4/11/2012)
SELECT Distinct Outcome
, TestNo
, SUBSTRING(RIGHT('SuitePath',DATALENGTH('SuitePath') - 1),1,PATINDEX('%\%',RIGHT('SuitePath',DATALENGTH('SuitePath') - 1)) - 1)
from testsuite
i get this error
Msg 536, Level 16, State 1, Line 1
Invalid length parameter passed to...
April 11, 2012 at 4:39 pm
xenophilia (4/11/2012)
April 11, 2012 at 4:23 pm
Gail's blog posts helped me out alot when i was trying to figure out my indexes on a table(Thanks Gail). read them and if you have any questions after...
April 11, 2012 at 4:13 pm
Lynn Pettis (4/11/2012)
Lynn Pettis (4/11/2012)
Not sure but I think this individual, xenophilia, should change their name to xenosqlia.
Please, someone tell me why, just why do I keep helping someone who...
April 11, 2012 at 4:10 pm
Lynn Pettis (4/11/2012)
SQLKnowItAll (4/11/2012)
note that it is not only bad etiquette in a forum to post your entire question in the subject line and nothing in the post itself, but...
April 11, 2012 at 3:57 pm
xenophilia (4/11/2012)
Hello Gail!So, that results in empty cells. I know I should post some ddl, but any ideas?
so why dont you post what you know we will ask for?...
April 11, 2012 at 3:30 pm
http://msdn.microsoft.com/en-us/library/ms186734.aspx in case google is broken. also if you post DDL and sample data you will get tested code. we here like solving problems. it passes...
April 11, 2012 at 3:28 pm
piotrka (4/11/2012)
The self join is working just fine. Thanks for all your help.
glad to hear we could help you out.
April 11, 2012 at 3:24 pm
Is this related to http://www.sqlservercentral.com/Forums/Topic1281810-392-1.aspx "how to sum up instances only 3 of the 4 values that can occur in a given column"
If so it will be better to...
April 11, 2012 at 3:20 pm
SQLKnowItAll (4/11/2012)
Saggy (4/11/2012)
we have to create a nightly maintenance plan for the database Adventureworks that does:
1) Full database and transaction log backup
2) Integrity check, rebuild index, recompute statistics.
Backups should go...
April 11, 2012 at 12:09 pm
i to prefer to eleminate as many nulls in the data as possible. however it has to make sense. a last modified date IMHO is the inserted date...
April 10, 2012 at 4:30 pm
richard.noordam (4/10/2012)
Thanks!will go forth with distrust in my heart, and suspicion in my actions ;). am paranoid a bit when it comes to my data....
what?? a...
April 10, 2012 at 3:09 pm
is your windows user part of a domain admin group? or some group that has the access you are seeing in the database? only way that would be...
April 10, 2012 at 3:08 pm
yep with something like the following to pull the next date.
SELECT @NextDate = MIN([datecolumn])
FROM [datetable]
WHERE [datecolumn] > getdate()
April 10, 2012 at 3:05 pm
im fine with things scheduling themselves with in reason. the first is i have tested them in dev and been able to break them in dev doing things that...
April 10, 2012 at 3:03 pm
Viewing 15 posts - 616 through 630 (of 860 total)