Viewing 15 posts - 6,316 through 6,330 (of 6,678 total)
Shoot - that is one of the reasons I recommended reading the article about how to post. If I had something to test against, I would have been able...
July 21, 2008 at 3:53 pm
If the event happened recently enough, you can try pulling it from the default trace.
Declare @path varchar(100);
Set @path = (select path from sys.traces where id = 1);
Select *
...
July 21, 2008 at 3:49 pm
Check the SQL Server logs - should be something in there related to the drop/detach of the affected database.
July 21, 2008 at 3:08 pm
jonathanmreynolds (7/21/2008)
Once I have an understanding of the relationships, it really shouldn't be that hard to figure this out.
Hi Jeffrey - thanks again for your time assisting me with this....
July 21, 2008 at 2:46 pm
It probably did not install of the express edition - but, you probably missed the check box to install the database engine.
Try re-running the setup and make sure you select...
July 20, 2008 at 1:58 pm
Okay, then it should be installed. How are you determining that it is not installed?
What services do you have that start with SQL*?
Try opening SQL Server Configuration Manager and...
July 20, 2008 at 12:26 pm
levani (7/17/2008)
What I am trying to do is to export the Data from tables to Excel fiel
I creted the...
July 20, 2008 at 12:18 pm
You probably installed the Express version and not a trial edition. The express version does not come with the agent.
To verify, run: SELECT @@version; from a query window or...
July 20, 2008 at 12:14 pm
If you are going to be passing in all of the parameters, then no - you don't need to coalesce the parameters.
July 20, 2008 at 12:07 pm
No - don't understand what you are asking. Please read the following article and re-post your question:
Best Practices: http://www.sqlservercentral.com/articles/Best+Practices/61537/
July 20, 2008 at 11:08 am
Are you asking about a database being backed up?
Look in BOL at BACKUP and RESTORE to see how to backup a database and restore to another server.
July 20, 2008 at 10:52 am
jbloes (7/20/2008)
The problem...
July 20, 2008 at 10:49 am
george sibbald (7/20/2008)
this is in the 2005 forum but you stated you are using sql 2000, in that cases you cannot use schemas
George - I must of skipped right over...
July 20, 2008 at 10:30 am
The only way I can think of would be to create roles with the appropriate schema level permissions. Once you have a role defined, and assigned the users/groups to...
July 19, 2008 at 2:44 pm
A table, by definition, has no order - so, there is no way to return rows in the order they were entered.
The only way you can write a query in...
July 19, 2008 at 2:39 pm
Viewing 15 posts - 6,316 through 6,330 (of 6,678 total)