Viewing 15 posts - 1,111 through 1,125 (of 1,270 total)
That option is not in SQL 2005 Management Studio. You can right click and seelct open or you can right click and select to script as a select, update, insert,...
October 5, 2006 at 11:48 am
Well, first of all, response.write is not valid in a .vbs file. Are you sure you didn't take that from ASP code?
September 28, 2006 at 2:09 pm
ANSI_Padding controls how data is stored, not how it is inserted. So setting ANSI_Padding off in SQL Server has no effect whatsoever on how Access stores it. You need to...
September 28, 2006 at 2:01 pm
Try rebooring the server. I've found that when there are problems authenticating a Windows login and SQL Server is claiming that the user is Null or unknown, then rebooting the...
September 28, 2006 at 1:56 pm
Int's CAN be replicated!!! Even if it is an identity field, it can still be replicated!!!!
In SQL 2005, there is a new function for generating sequential uniqueidentifiers....
September 28, 2006 at 1:53 pm
Rarely have I disagreed more with an article I've read on here.
September 27, 2006 at 1:41 pm
What we have done in the past is to have a database that we called ThirdParty in dev/test/produciton. When we have a data source (from customer, third party vendor, etc.) that...
September 19, 2006 at 1:28 pm
I would be opposed to all of these solutions. Production and test should remain separated entities. If you do a direct import of any kind from test into production, you...
September 19, 2006 at 1:12 pm
Please don't post the same question in multiple forums. It's been answered in another forum already.
September 19, 2006 at 1:06 pm
http://www.asp101.com has easy to follow tutorials on how to do this. Just go to the samples section.
September 19, 2006 at 1:01 pm
You can reference the SQL Server connection as being (local), and it will always refer to the machine on which it is being run. Doing it this way, however, means...
September 19, 2006 at 12:58 pm
Since you are using SQL 2005, you should just use the SQL 2005 view and forget about the SQL 2000 compatibility view.
Select
*
From
September 15, 2006 at 11:38 am
Or to use the SQL 2005 sys view, simply look at the is_user_defined column of the sys.types view. From Books online:
is_user_defined | bit... |
September 14, 2006 at 10:07 pm
Try running this instead:
select bucketid, cacheobjtype, objtype, objid, dbid
from master.dbo.SYSCACHEOBJECTS with(nolock)
where objid = 1718297181
September 12, 2006 at 11:37 am
Viewing 15 posts - 1,111 through 1,125 (of 1,270 total)