Viewing 15 posts - 2,581 through 2,595 (of 5,103 total)
That is not correct! I have a named instance in my development computer an it gives me : COMPUTERNAME\INSTANCENAME
October 17, 2005 at 1:57 pm
When you write something to be posted on an internet site that could potentially reach a lot of people the content as well as the way in which you convey your...
October 17, 2005 at 1:14 pm
this is definitely a Detach! Drop would have "erased" the files ![]()
October 17, 2005 at 12:44 pm
From the instance perspective there is Only ONE Db so I don't think it can cause a problem!!!
October 17, 2005 at 12:41 pm
Simply put:
Use a permanent table and add a column with s_user_name as default. Then all queries should be filtered by s_user_sname (with a view perhaps
October 17, 2005 at 12:37 pm
sp_prepexec is a utility implemented by the ODBC driver and should not be used directly. If you need to perform such a task you need to use ODBC on your...
October 17, 2005 at 12:25 pm
Right again! ![]()
Not hard to write, Very simple to maintain and your final product should look neat with static fields only
October 17, 2005 at 12:18 pm
That is the Right approach!!
Many people try to justify dynamic sql with the Idea that the columns and tables are very volatile in their environment. That is plain wrong. If...
October 17, 2005 at 12:07 pm
You are better off using the FoxPro ODBC Driver or the FoxPro OLEDB Provider:
ODBC Driver:
SELECT s.*
FROM OPENROWSET('MSDASQL', 'DRIVER={Microsoft Visual FoxPro Driver};
Exclusive=No;Collate=Machine;Deleted=Yes;Null=No;
SourceDB=e:\data\Model.dbc;SourceType=DBC;',
'SELECT * FROM YourTable')s
OLE DB provider:
SELECT s.*
FROM OPENROWSET('VFPOLEDB.1',
'e:\data\Model.dbc';;,
'SELECT...
October 17, 2005 at 11:56 am
To get access with dynamic sql you need to copy the data into a temp table.
This is how you do it in SS 2k:
http://www.sqlservercentral.com/columnists/lPeysakhovich/anaudittrailgenerator.asp
Now, I have never agreed with...
October 17, 2005 at 11:44 am
Very wise on your part. Just always remember this:
When you read the fine print you'll adquire knowledge, when you don't you will adquire experience ![]()
![]()
![]()
October 14, 2005 at 1:33 pm
Viewing 15 posts - 2,581 through 2,595 (of 5,103 total)