Viewing 14 posts - 61 through 74 (of 74 total)
Is there anything we can do wiht what he got?
April 30, 2002 at 8:06 am
Check SQL Client Network utility and change default network library. That should do it.
April 30, 2002 at 7:52 am
We need to refine our search a little better. Lot of times, when i search for an item, i do not get what i am looking for but i know...
April 29, 2002 at 3:08 pm
Try using DTS wizard. It is pretty straight forward. Make sure you give the parameters in each screen right.
April 29, 2002 at 3:05 pm
Make sure it is not dropped or in the restore process.
April 29, 2002 at 2:57 pm
Set the max memory so SQLServer does not take more than it is allowed.
Also try using DBCC DropCleanBuffers
This would free up the cache. In turn it should free...
April 23, 2002 at 10:34 am
I just want to know the set based workings of sql. Although I can relate a few joins with sets, I would like to think and write my query based...
April 22, 2002 at 11:55 am
Know your business. Keep in mind that business is more important than technical. Don't do anything just because you saw it in some forum or magazine. Think how it will...
April 22, 2002 at 7:49 am
I have developed a VB application using SQLDMO to transfer tables, logins, users, permissions etc.. If you need any help, contact me. I might be able to help you. (My...
April 17, 2002 at 10:12 am
It is perfectly alright to group by a field which is not in the select list but all the fields in the select list should either be in an aggregate...
April 15, 2002 at 10:03 am
Use SQLDMO and generate scripts.
sub GenerateScript(TableName as string)
dim objServer As New SQLDMO.SQLServer
objServer.Connect Trim(gstrServerName), Trim(gstrUserName), Trim(gstrPassword)
'this would generate a file called <tablename>.sql
objServer.Databases(gstrDatabase).Views(TableName).Script SQLDMOScript_Default + SQLDMOScript_Drops, Trim(gstrScriptFolder) + "\" +...
March 21, 2002 at 8:18 am
Can't you try using xp_cmdshell?
March 20, 2002 at 1:22 pm
Viewing 14 posts - 61 through 74 (of 74 total)