Viewing 15 posts - 13,891 through 13,905 (of 14,953 total)
I don't know if there's a direct way to do that (might be), but you could log that with a start-up proc.
May 2, 2008 at 9:43 am
I'd break the item codes out into single-character many-to-many. Basically, they become a dimension.
May 2, 2008 at 9:18 am
If it's not running, or wasn't running at the last time the proc was run, it doesn't get you what you need.
May 2, 2008 at 9:15 am
I have to agree with Jeff's point, specifically because the context is an interview.
If I were interviewing a potential DBA, and asked a silly question like this, the whole point...
May 2, 2008 at 8:48 am
Wouldn't it be easier to use Row_Number() to rebuild the rows, instead of whatever cursor or loop you are using in your trigger to increment the numbers?
create trigger Table_Delete on...
May 2, 2008 at 8:34 am
Long-term, the idea of going back to Access because of ease-of-reporting is a bad one. Definitely. If you have immediate needs, and Access is the only way you...
May 2, 2008 at 7:57 am
I'd never try to use some clever "all the months without 'e' in their name", so I just took the list as having some business-rule basis, and decided that, if...
May 2, 2008 at 7:55 am
"Fiber mode" is part of lightweight pooling. It limits how SQL Server uses threads. Most likely, the server is set in lightweight pooling mode (it's a server option),...
May 1, 2008 at 2:44 pm
You should be able to do that with a single insert statement, without using a cursor. I'd have to see the table definitions, some sample data (a few rows),...
May 1, 2008 at 2:38 pm
Are you trying to find out whether a proc has been run recently?
If not, you can always modify the proc to log it's most recent run-date in a table.
May 1, 2008 at 1:50 pm
I haven't run that particular virtual machine engine, but I have run SQL Server on virtual servers.
Have you tested to make sure the .NET framework is running correctly?
May 1, 2008 at 1:48 pm
Unless the database specifically uses features that SQL Express doesn't support (there are a few, but mainly in terms of enterprise databases and server automation, probably doesn't apply), you can...
May 1, 2008 at 1:46 pm
mmgorman (4/30/2008)
I have a database built through Mimer. It's a DBMS from Sweden. A user asked how difficult would it be to have that database run under SQL Server...
May 1, 2008 at 1:40 pm
May I ask what this is intended to do and why it's a cursor instead of just using Insert ... Select ...?
May 1, 2008 at 1:38 pm
Jeff Moden (5/1/2008)
Matt Miller (5/1/2008)
speaking of dupes...methinks we've all been duped into continuing to beat up on this topic, since the OP is long gone...:)
Yep... gotta love it when the...
May 1, 2008 at 1:30 pm
Viewing 15 posts - 13,891 through 13,905 (of 14,953 total)