Viewing 15 posts - 4,111 through 4,125 (of 7,429 total)
If you were using the computer name and that name is not recognized on the local subnet then it may not be able to find it. We have run across...
December 1, 2002 at 7:42 pm
Odds are the reason is because you had yourself in the context of master. In TSQL run
USE msdb
Go
then your restore items. I made this mistake previously. You should also do...
December 1, 2002 at 7:38 pm
Here read this from SQL BOL
quote:
Prepared ExecutionThe ODBC API defines prepared execution as a way to reduce the parsing and compiling...
November 27, 2002 at 8:52 am
Yes FKs do not verify if the same columns exist in a different FK. Technically this doesn't break it so it does not cause an issue, just a pain to...
November 27, 2002 at 8:31 am
The big key being
Use paramater substitution so that the actual statement text remains the same.
If you use the metadata and change the column names or tables involved every run...
November 27, 2002 at 8:23 am
I prefer
while not dkrResult.EOF
response.write(dkrResult.fields("customerid").value)
dkrResult.movenext
wend
November 27, 2002 at 8:14 am
Also, check your Client Networking Utility for SQL if installed if you are using the defined name in the connection parameter that is stored in CLU. Make sure is a...
November 27, 2002 at 8:13 am
Ways I can think of off hand
DTS
Import/Export Wizard
Create linked server and query over
dump the data to comma seperate or tab delimited text file and bcp in
build an app to read...
November 27, 2002 at 8:09 am
Prakash is right as long as the transaction log is intact from the last time they did any backup then you could restore to another DB the last full, backup...
November 27, 2002 at 8:06 am
Duplicate post, see responses in thread http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=8452&FORUM_ID=8&CAT_ID=1&Topic_Title=DATETIME&Forum_Title=T%2DSQL
November 27, 2002 at 7:59 am
Yes using '' on a column that is datetime defaults to the lowest value which is 1/1/1900. You need to insert with the keyword NULL in the position instead.
You cannot...
November 27, 2002 at 7:57 am
No, do not install SQL Server just the CLient tools using custom install. Yopu can choose not to install EM and QA in that situation I believe but still have...
November 27, 2002 at 7:48 am
In the SQL string I think is watch he means, add a space. WHen you apply it should generate a change in the view and perform an alter. However, I...
November 27, 2002 at 7:43 am
Cool the message if you click on Your Opinion is as follows
quote:
Hackers will be prosecuted to the fullest extent of the...
November 27, 2002 at 7:41 am
I have a test instance at the house of SQL 7 and 2000. I can put thru the paces after Dec 1st.
Can't say there site is too well put together...
November 26, 2002 at 9:36 pm
Viewing 15 posts - 4,111 through 4,125 (of 7,429 total)