Viewing 15 posts - 18,631 through 18,645 (of 19,564 total)
24tjf (12/18/2009)
If I am selecting from the temp table, i.e. MemberID: xxx has had 4 visits (all at the same store) [Not in the example]
Then the query...
December 18, 2009 at 3:45 pm
Please don't double post
Post any responses to http://www.sqlservercentral.com/Forums/Topic836660-1292-1.aspx
December 18, 2009 at 3:28 pm
Based on the available information, I did the following:
Create Table #StoreVisit (StoreID int, MemberID int, DateVisited datetime)
go
Insert into #StoreVisit(StoreID,MemberID,DateVisited)
Select 888,100100,'2009-01-25'
Union All
Select 888,100100,'2009-02-15'
Union All
Select 999, 200200,'2009-07-01'
Union All
Select 777, 200200, '2009-09-25'
Union All
Select...
December 18, 2009 at 3:13 pm
To find the Servers:
OSQL command line utility
or
SQLRecon
Once you know the servers, you will need to run scripts against each of them to determine databases and database owners.
December 18, 2009 at 2:59 pm
looks like you got it working...
December 18, 2009 at 2:56 pm
Yes, please - Divulge the upgrade details.
December 18, 2009 at 2:00 pm
GSquared (12/18/2009)
Steve Jones - Editor (12/18/2009)
Any guesses on the new architecture?
Black, metalic cases, with cooling fans. Lots of little lights, but not so many as the bridge of The...
December 18, 2009 at 1:28 pm
The Use Database statement may correct this issue.
December 18, 2009 at 1:26 pm
Something may be caching in the system for a different database.
When he tries to create the table, does he do it through the GUI or TSQL? Have you watched...
December 18, 2009 at 1:20 pm
Besides, I can't even get on twitter while at work (and i'm not gonna do the teeny bopper thing and use my cellphone for it) - websense.
December 18, 2009 at 1:14 pm
Alvin Ramard (12/18/2009)
I know if I like this idea. There's already too many places for people to go ask questions.
You do or don't like it?
Personally, I...
December 18, 2009 at 1:13 pm
This might be more along the lines of what you are requesting:
December 18, 2009 at 1:09 pm
Viewing 15 posts - 18,631 through 18,645 (of 19,564 total)