Viewing 15 posts - 8,221 through 8,235 (of 14,953 total)
Jan Van der Eecken (10/5/2009)
GSquared (10/5/2009)
jcrawf02 (10/5/2009)
October 5, 2009 at 2:33 pm
"Starting to think 'too' business" - it happens. 🙂
October 5, 2009 at 1:21 pm
Go with the temp table idea. It's the best option.
October 5, 2009 at 1:20 pm
That makes more sense now.
The only thing I can think of is adding a VBA "on startup" script to the Access file which would log that someone is using it....
October 5, 2009 at 12:57 pm
The only methods I can think of would be unstable and untrustworthy.
Any reason to not have multiple Access files and bypass whatever issue you're running into?
October 5, 2009 at 11:48 am
Is there some particular reason to not have SQL back up the database? I'm sure there are ways to back up the file directly, but they're all going to...
October 5, 2009 at 11:45 am
jcrawf02 (10/5/2009)
October 5, 2009 at 11:39 am
dsdeming (10/5/2009)
CREATE TABLE #Test(ID int IDENTITY(1,1), FirstName varchar(10), LastName varchar(10), Email varchar(10))
INSERT INTO...
October 5, 2009 at 11:17 am
Here's how I recommend doing deduping in SQL 2005/2008:
;with CTE (Row) as
(select row_number() over (partition by FirstName, LastName, Email order by ID)
from dbo.PERSONS)
delete from CTE
where Row > 1;
Here's a performance...
October 5, 2009 at 9:59 am
I've had bosses I would back up completely and support enthusiastically, and bosses I'd abandon at the slightest opportunity. Fortunately, more of the first than the second.
I always think...
October 5, 2009 at 7:38 am
I've used maintenance plans as a stopgap. Get something in place that backs up databases on regular basis and a few other tasks, while building the necessary scripts and...
October 5, 2009 at 7:34 am
Jan Van der Eecken (10/2/2009)
Is this fair use of the forums by the way?
Steve's reply to another copy of the post is here: http://www.sqlservercentral.com/Forums/Topic780179-61-1.aspx
I don't have a problem with it....
October 5, 2009 at 7:28 am
Francis Yee-483501 (10/2/2009)
The code I quoted is just one tenth of the original program.
My purpose is very straight forward and the...
October 5, 2009 at 7:24 am
When you create an index, you can specify which filegroup to create it in. If you create the clustered index in a certain filegroup, then that's the table. ...
October 2, 2009 at 1:39 pm
When Management Studio asks you which server to connect to, type in the IP address, add the correct credentials, and see if it'll connect.
October 2, 2009 at 1:35 pm
Viewing 15 posts - 8,221 through 8,235 (of 14,953 total)