Viewing 15 posts - 31 through 45 (of 53 total)
n_narayanan (12/4/2012)
Hi BhuvneshThanks for the response; I think you have not understood my question.
Regards
Narayanan
🙂 Hello Narayanan,
If I am understanding your question correctly, you can keep the sql statements in a...
December 4, 2012 at 6:33 am
Even if you try to shrink the database, it will not be shrunk if it has data worth 29 GBs. So it is better to setup the autogrowth of the...
December 4, 2012 at 6:25 am
sanket kokane (12/4/2012)
to get file create date
xp_cmdshell 'dir <your Datafile Path> /tc'
or
right click on data file at physical location and check create time
Wonderful. 🙂 Sometimes we need to...
December 4, 2012 at 6:19 am
Hello,
Not sure if you can get the info for files added/ altered alreadt but to track the changes in future, you need to configire DDL triggers to capture this information.
Check...
December 4, 2012 at 6:17 am
select @@SERVERNAME as "Server_Name" , value from master.sys.configurations where name = 'max server memory (MB)'
December 4, 2012 at 4:30 am
Hello,
Make sure the second data file belongs to 'PRIMARY' filegroup.
And then you can also try shrinking the 1st mdf file using the option 'Empty file by migrating data to other...
December 4, 2012 at 4:23 am
Have you checked this link?
December 4, 2012 at 4:15 am
You can try the below however, this might take a long time depending on the number of records in the table.
USE YOUR_DATABASE_NAME
GO
DECLARE @MY_COL VARCHAR(50)
DECLARE @QRY VARCHAR (255)
declare kursor cursor for
SELECT...
December 4, 2012 at 3:09 am
ramyours2003 (12/3/2012)
can any one send the step by step approach who...
December 4, 2012 at 2:48 am
ramyours2003 (12/3/2012)
can any one send the step by step approach who...
December 4, 2012 at 2:48 am
ravi@sql (12/3/2012)
no actually i closed sql server and opened am able to see other databases except which i wanted to connect.
Hello Ravi,
Are you able to connect to the database now?...
December 4, 2012 at 2:44 am
I guess it is because you restarted SQL Server and trying to connect to the instance from an already opened SSMS Query window.
Try this:
Right-click on query window
Goto Connections
Click on Connect...
December 3, 2012 at 7:12 am
December 3, 2012 at 7:09 am
Hello Jaockim,
The error might occur if
a.) Remote connections are not enabled on SQL Server.
b.) The necessary protocols for are not enabled either SQL Server computer or the SQL Server client...
December 3, 2012 at 7:03 am
Viewing 15 posts - 31 through 45 (of 53 total)