Lincoln Burrows
Forum Replies Created
-
AuthorPosts
-
December 12, 2015 at 12:36 pm in reply to: How to fix ”Named Pipes Provider, error: 40” in SQL Server #997 Score: 0
I found an informative blog about this problem here that reference:http://www.sqlserverlogexplorer.com/fix-error-message-40/
December 10, 2015 at 9:19 am in reply to: How to move multiple NSF files to single NSF file? #992 Score: 0Hi Kerry,
You can integrate the other’s account NSF file to your main account by using the software which I had already mentioned above.
You should go through and check the features of this product.December 9, 2015 at 5:42 am in reply to: How to move multiple NSF files to single NSF file? #986 Score: 0Hi Andrew,
As far as I know, the tool is designed to remove the duplicate contents from within the folders, which I checked while going through its demo version.
There is a separate dialog box in the software where you can check “Remove Duplicate” option to merge the files without any duplicates included.December 8, 2015 at 5:58 am in reply to: How to move multiple NSF files to single NSF file? #984 Score: 0Hi,
The solution to this problem can be successfully sorted by using a third party software tool, as there is hardly any manual trick which works in this case.
I found a useful utility that goes by the name of SysTools NSF Merge, which can easily combine multiple NSF Archive Database files to a single file.
I suggest you to first try its demo version and then decide whether it fulfills your needs or not.
Check the below link to know more.
http://www.systoolsgroup.com/nsf-merge/December 5, 2015 at 11:22 am in reply to: How to fix ”Named Pipes Provider, error: 40” in SQL Server #980 Score: 0Make sure:
1.The site can communicate with the server
2.Remote connections are allowed.
3.Named pipes/TCP is enabled.
4.Enabled everything in SQL Server Configuration Manager.November 30, 2015 at 12:34 pm in reply to: how to remove secondary transaction log file? #961 Score: 0Thanks Stephen for providing the script, I tried the script, but found no object listed. It didn’t work for me, I am still facing the same problem
November 26, 2015 at 12:04 pm in reply to: Move table form one database to another database in SQL #918 Score: 0Use Generate SQL Server Scripts Wizard to help guide the creation of SQL script’s that can:
• copy the table schema
• any constraints (identity, default values, etc)
• data within the table
• and many other optionsNovember 16, 2015 at 12:00 pm in reply to: How to delete all tables in SQL Server database? #887 Score: 0Yes you can delete it from the command prompt try this
EXEC xp_cmdshell 'SQLCMD -U <user> -P <password> -Q 'EXEC sp_MSforeachtable @command1 = "DROP TABLE ?" ' ,no_output
November 7, 2015 at 6:56 am in reply to: How to delete all tables in SQL Server database? #885 Score: 0You should try this too
SELECT 'USE Serv DROP TABLE [' + SCHEMA_NAME(schema_id) + '].[' + name + ']' FROM sys.tables SELECT ' USE Serv DROP PROCEDURE [' + SCHEMA_NAME(schema_id) + '].[' + name + ']' FROM sys.procedures
November 3, 2015 at 11:16 am in reply to: How can I get the query history in SQL Server? #880 Score: 0If SQL Server hasn’t been restarted, then you may be able to find the query in the plan cache.
SELECT t.[text] FROM sys.dm_exec_cached_plans AS p CROSS APPLY sys.dm_exec_sql_text(p.plan_handle) AS t WHERE t.[text] LIKE N'%something unique about your query%';
You can Monitor SQL queries by SQL Profiler if you need it
October 30, 2015 at 6:29 am in reply to: How to rebuild indexes in SQL Server Database #876 Score: 0Rebuild all indexes on a table using SQL Server Management Studio
In Object Explorer, connect to Instance Services.. and then expand that instance
Expand Database that contains the table with the specified indexes, then expand Tables
Expand the table in which the indexes belong
Right click on the Indexes and then select Rebuild All and click OK
check, may the procedure is dropped or not exist
Try this Code:
chown www-data /database location
October 7, 2015 at 12:57 pm in reply to: how to fix error 9001 (“DatabaseName” is not available) ? #800 Score: 0have you run the DBCC CHECKDB on the database?
Yes, I did run the DBCC CHECKD, but it still giving me SQL error 823.
October 5, 2015 at 11:26 am in reply to: Deleting a Transaction Log File in SQL Server #778 Score: 0Connect to the Database Engine and execute the following query
USE master; GO ALTER DATABASE AdventureWorks2012 REMOVE FILE testfile; GO
October 1, 2015 at 10:23 am in reply to: how to use function and stored procedure in SQL Server ? #772 Score: 0Functions are computed values and cannot perform permanent environmental changes to SQL Server (i.e. no INSERT or UPDATE statements allowed).
A Function can be used inline in SQL Statements if it returns a scalar value or can be joined upon if it returns a result set.September 29, 2015 at 7:15 am in reply to: How to change authentication mode in SQL Server 2008? #763 Score: 0Open the registry and search for key LoginMode under:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server
Update the LoginMode value as 2.can i hide all user database for all logins?
September 25, 2015 at 12:59 pm in reply to: Seeking Suggestions for OST to PST Converter #745 Score: 0Off course not, you will not get any compatibility issues while OST to PST conversion. Any version of your OST file is compatible with the tool. And the converted PST file, you can access in your Outlook 2007 without any doubt
-
AuthorPosts