Viewing 15 posts - 1,171 through 1,185 (of 1,335 total)
Sergiy,
The link you have posted is ok. But there the user knew atleast his column name. Here it looks like our friend neither knows the column name nor the table...
June 12, 2007 at 5:53 am
you have a procedure named sp_tables that will list the tables in the database. but unless and otherwise you know exactly what columns and tables to be used in your...
June 12, 2007 at 5:50 am
An update statement as given below should be ok. check and let me know.
update test1
set test1.col2 = test2.col2,
test1.col3 = test2.col3
from test1,test2
where test1.col1 = test2.col1
June 12, 2007 at 5:32 am
Are you trying to install it in a cluster environment?
June 12, 2007 at 5:15 am
I tried using the sp but could not find what i exactly wanted. i want to get the time for last few transactions might be before an hour or so.
June 12, 2007 at 5:14 am
use trace flag -T3608 in the startup of sql server. This will only start your master database. Once the SQL server starts in this mode alter the tempdb location and...
June 12, 2007 at 5:07 am
The problem might occur if you use non-ansi joins anywhere in your procedure.
June 12, 2007 at 5:02 am
You can alter the database path using alter database command and then once you give the correct path of the tempdb database restart sql services that should be running fine.
June 11, 2007 at 7:05 am
Check what is the type of the backup. I think you are trying to restore a diff backup without restoring a full backup.
June 11, 2007 at 2:07 am
Starts and then stops:
Does the SQL Server service run for few mins and then stops or it stops immediately. This might be a problem if the needed permissions for the...
June 11, 2007 at 2:05 am
did you try starting the mail session with xp_startmail. If so did that throw any error. Please try that and let us know whats the error that posts in when...
June 11, 2007 at 2:03 am
OPENROWSET makes a connection to the remote server only for the period that connection requesting is open where as LINKED server is configured to access the remote server anytime and...
June 11, 2007 at 2:01 am
Check whats the size of log file. That might occupy more space than what you have expected.
June 8, 2007 at 1:59 am
There is a tool in SQL 2005 that can be used to check any differences with tables called tablediff. Check if that statisfies your req. If not you can use...
June 7, 2007 at 5:39 am
SQL server fails to access resources in network with local users. Instead use a domain id to access the network resource and check if that succeds.
June 7, 2007 at 5:31 am
Viewing 15 posts - 1,171 through 1,185 (of 1,335 total)