Viewing 15 posts - 391 through 405 (of 824 total)
Unless the SQL Server instance is running under your account you need to check to ensure that it has rights to the directory in question.
August 1, 2005 at 10:02 pm
You just need to use brackets around your database name so bcp doesn't parse the "-" as a parameter.
bcp [bbc-nortal_d].tnt.empt out c:\shasha\empt.bcp -n -Utnt -Ptnt
should do it...
August 1, 2005 at 9:35 am
You are certainly missing something.
The db_dbOwner group does not give actual ownership of the database nor of any particular objects to its members. It does give most ownership rights so...
July 25, 2005 at 6:08 pm
It all depends on who owns the table(s) being referenced by the stored procedure. If you have dbo.table1 being referenced by the owner1.usp_get_data proc this creates an Ownership Chain. Regardless...
July 25, 2005 at 1:13 pm
First off it will require a window of time that your application will be offline. The question really is how long? The simplest method is to shut down the application,...
July 25, 2005 at 10:13 am
I think you are in for some pain... With 800 tables you might want to invest the time to create some SQL generating SQL to create the statements necessary.
But...
July 22, 2005 at 10:35 am
There are several ways to see what the definition of a foreign key is, but my preferred method is to open up Query Analyzer, in the Object Explorer pane expand...
July 22, 2005 at 10:18 am
Oh yeah, just to directly answer your question... Since sort order is part of the collation, everything I and noeld said about collations is true about sort order.
July 22, 2005 at 9:14 am
First off you need to realize that the collation affects only non-unicode character columns with the exception of sort order. The sort order specified in your collation applies to both unicode...
July 22, 2005 at 9:12 am
what you are seeing are the statistics that SQL Server creates automatically.
July 21, 2005 at 2:46 pm
The database design should not be affected by SOA or any other system architecture. The database should reflect the meaning of the data that it stores. The arcitecture chosen to...
July 21, 2005 at 9:46 am
If you are going to wipe and rebuild the server just make sure that you have good backups of all your user databases plus the msdb database. Use the scripts...
July 21, 2005 at 9:19 am
To answer your specific question, yes, you can restore a database of whatever collation to a server with whatever default collation. With SQL 2000 collation is actaully controlled down to...
July 21, 2005 at 9:06 am
If there is some sort of sequence required that is not supported by the data itself, as in this case, you will have to add a third column and use it...
July 20, 2005 at 12:19 pm
Viewing 15 posts - 391 through 405 (of 824 total)