Viewing 15 posts - 16 through 30 (of 1,085 total)
RBarryYoung (1/5/2009)Attach them in a ZIP file.
Thanks. Let's see - where would the button be to attach a file?
Got it. "Edit Attachments" Unusual button name...
January 5, 2009 at 2:11 pm
I haven't been here in a long, long time. [ The pages look radically different now and I am not certain of all the capabilities ]
I hope...
January 5, 2009 at 12:58 pm
That's it, Michael! Did not see that number in my reference book.
April 3, 2007 at 3:33 pm
I don't see a SQL Style with dashes. You could try the following:
SELECT GETDATE(), CONVERT( varchar(10), GETDATE(), 112),
SUBSTRING( CONVERT( varchar(10), GETDATE(), 112), 1, 4) + '-' +...
April 3, 2007 at 3:16 pm
April 3, 2007 at 2:20 pm
Please do not cross-link. Your question will get answered.
March 12, 2007 at 2:04 pm
Not sure, but it sounds like you may need two things:
1) LastUpdate field with a datetime or timestamp designation to retrieve the last record.
B) A Commit Transaction wrapped...
March 12, 2007 at 1:37 pm
Hmmm...
My script returns:
sort
--------------------
1
1cc2
1dd
1x4
10
11
380-41-3a
1110-345-720a3
The Robert Davis script returns:
sort
--------------------
1x4
1cc2
1110-345-720a3
1dd
380-41-3a
1
10
11
I think the latter is not as good...
March 9, 2007 at 2:03 pm
I was VERY errant in not noting who wrote this to give proper credit! I got this off a posting on this site. If you wrote it, please respond so...
March 9, 2007 at 1:43 pm
I have found sp_who2 to generate better results, but it does not take parameters well...
March 8, 2007 at 3:20 pm
Not sure, but is this what you want?
DECLARE @Person TABLE( PK integer, Addr varchar(10), [name] varchar(3))
INSERT INTO @Person
SELECT 1, 'NewYork', 'abc'
UNION
SELECT 2, 'CA', 'DEF'
SELECT...
February 23, 2007 at 3:22 pm
Thanks Jeff. We've seen it with just one index! That is why I found it odd? (and to further complicate this, it was an "archived" table - data from the...
February 10, 2007 at 7:54 am
Thank you all. Oddly enough, we can see a difference immediately when we drop an Index in Development. That would leave me to believe that the statistics are being updated. ...
February 9, 2007 at 7:42 pm
Yeah - that was my first attempt. I should have noted that as well. Sorry.
February 6, 2007 at 12:44 pm
Viewing 15 posts - 16 through 30 (of 1,085 total)