Viewing 15 posts - 2,416 through 2,430 (of 3,738 total)
Digs (8/20/2011)
Do you meanC:\..\DBMyWebProject.mdf
Check the logical filenames by right clicking on the Database in SSMS and select properties. Then Click on the Files Tab. You want the logical file...
August 20, 2011 at 7:21 pm
You have the syntax correct but you want to use the logica name of the datafile and logfile.
The syntax is the same for the Log File as the Data File.
Check...
August 20, 2011 at 7:12 pm
You can easily create a maintenance plan it will create a text file so that you know what Indexes have been rebuilt and which one was being reindexed when...
August 20, 2011 at 6:45 pm
DBCC SHRINKFILE is preferable, because you have more control over it.
You should only perform a shrink operation if you have a lot of space that you need to free...
August 20, 2011 at 5:31 pm
Post removed.
August 19, 2011 at 7:09 pm
You can only join tables on common elements. GroupName (Generic Name) to Group Name or GroupCode to Group Code.
The database should be storing the code in the child table so...
August 19, 2011 at 3:06 pm
Why do you want to do this?
August 19, 2011 at 2:12 pm
Jeff Moden (8/18/2011)
dji (8/18/2011)
If I understand correctly, though, most folks I know say that SSIS won't import "text qualified" files (files with double quotes in them if a delimiter, such...
August 18, 2011 at 5:12 pm
Neal Sivley (8/18/2011)
Insert a modifieddate where? I usually have columns on stuff like this, DateCreated and DateModified and updated them when needed.
If you look at the MERGE example and...
August 18, 2011 at 3:14 pm
Processing a record one by one is going to be slow.
The merge statement is your best option.
The following is an example.
August 18, 2011 at 12:37 pm
You can't do this just using T-SQL.
You could call a SP and return a URL from within .NET.
August 18, 2011 at 12:21 pm
There is a language property that can be set.
August 17, 2011 at 12:48 pm
You were told that you have permissions but I would verify.
Go to someone that you feel comfortable and verify what roles you are a member of, etc.
August 17, 2011 at 12:26 pm
Have you checked the SQL Server error log?
http://msdn.microsoft.com/en-us/library/ms366351(v=sql.100).aspx
You may also try this troubleshooting tool.
http://blogs.msdn.com/sqlsecurity/archive/2010/03/29/sql-server-authentication-troubleshooter.aspx
August 17, 2011 at 11:34 am
Viewing 15 posts - 2,416 through 2,430 (of 3,738 total)