Viewing 15 posts - 8,671 through 8,685 (of 26,490 total)
Jeff Moden (3/1/2013)
ScottPletcher (3/1/2013)
Or simply:
SELECT CONVERT(char(2), myDate, 1)
I'm not poking holes here so go easy. Considering another conversation about not so obvious code, wouldn't the concatenation method of adding...
March 2, 2013 at 12:08 pm
winmansoft (3/2/2013)
UPDATE a
SET oldRemarks1.modify('insert <Value_Py>{sql:column("b.collection_date")}</Value_Py>
after (/Root/Row[3]/Item)[1]') from b
where a.[Date]='31-May-2004' and ...
March 2, 2013 at 12:02 pm
Actually, yes. Don't use a cursor. Oh, wait, you would like some actual code here wouldn't you?
Okay, we can that once you post the DDL (CREATE TABLE statements)...
March 2, 2013 at 11:59 am
ramyours2003 (3/2/2013)
how to find the synchronisation of data of the previous month when the database is configured in mirroring ?
Just a little vague, what are you asking?
March 2, 2013 at 11:55 am
Look at using the OUTPUT clause when inserting the parent records to capture the information you need to insert the child records.
Hard to give more with so little information to...
March 2, 2013 at 11:50 am
Based on the following from MSDN, what other errors are there in the SQL Server Error LOG?
Error 3041
Severity Level 16
Message Text
BACKUP failed to complete the command %.*ls
Explanation
This error indicates that...
March 2, 2013 at 11:49 am
mehta.saurabhj (3/2/2013)
select * from emp where (rowid,1) in (select rowid, mod(rownum,2) from emp);
But if I do the foll code for odd...
March 2, 2013 at 11:43 am
Okay. Taking this just a little bit further, I have added one more test to the suite, I hard-coded the calculation being done by the functions. I have...
March 2, 2013 at 11:37 am
Haven't heard back so was wondering if the information provided was helpful or not,
March 2, 2013 at 10:42 am
You may want to read the following articles:
March 2, 2013 at 12:40 am
mehta.saurabhj (3/2/2013)
If, in the second query, you had dropped the alias from the table in the inner query you would have gotten the same answer as in the first query
...
March 2, 2013 at 12:33 am
mehta.saurabhj (3/1/2013)
March 2, 2013 at 12:07 am
Not what I meant by history. I meant a history of the fragmentation on the indexes. My first thought is that nothing happened on certain days because nothing...
March 1, 2013 at 3:19 pm
ScottPletcher (3/1/2013)
Jeff Moden (3/1/2013)
ScottPletcher (3/1/2013)
Code reuse is another tricky subject. It generally gets talked about far more often than it is genuinely done. A few developers are bad...
March 1, 2013 at 2:21 pm
Viewing 15 posts - 8,671 through 8,685 (of 26,490 total)