Viewing 15 posts - 3,196 through 3,210 (of 3,220 total)
This will do a lot more than what you have asked, so you can cut it down but this is what I use to learn the maximum about a table. ...
January 20, 2005 at 5:23 pm
Have you consider using views since you are preparing for reports (i.e., not updating or deleting data)
Views are also known as virtual tables because the result set returned by...
January 20, 2005 at 4:51 am
Can you be more descriptive of "haywire". If for example you are using a numeric value for a part number and the value is 12345678901, it should display correctly but...
January 11, 2005 at 8:17 am
How abut this for a starting point:
Dynamic TSQL for extended properties
Select * from ::fn_listextendedproperty(NULL, 'user', 'dbo' ,'table', 'agents','column',Default)
Hopes this helps
December 23, 2004 at 12:26 pm
You might be interested in attempting this bit of T-SQL
select name From sysobjects where id not in (select b.id from sysconstraints b, sysobjects c where c.type = 'K' and c.id = b.constid)...
December 2, 2004 at 9:12 pm
This might be of some use .. to return environmet varialbes
master..xp_cmdshell 'set'
from: http://www.sqlservercentral.com/scripts/contributions/649.asp
Returns:
ALLUSERSPROFILE=C:\Documents and Settings\All Users
CommonProgramFiles=C:\Program Files\Common Files
COMPUTERNAME=John0987
ComSpec=C:\Windows\system32\cmd.exe
INCLUDE=C:\Program Files\Microsoft Visual Studio .NET\FrameworkSDK\include
JSERV=C:\oracle\ora92/Apache/Jserv/conf
LIB=C:\Program Files\Microsoft Visual Studio .NET\FrameworkSDK\Lib
NUMBER_OF_PROCESSORS=1
OS=Windows_NT
Path=C:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program...
November 2, 2004 at 9:05 pm
Tracey - your question is rather vague. Briefly some things that need to be known to even take a stab at helping you.
1. Design of the SQL table(s) into which...
October 28, 2004 at 8:21 am
Start out with these declarations
Dim ado_cmdx As ADODB.Command
Dim cmdx_Param As ADODB.Parameter
Dim Rs as ADODB.Recordset
Set cmdx_Param = ado_cmdx.CreateParameter("@Name", adVarChar, adParamInput, 30, sTable) 'this sets up an input parameter, variable characterdata type with...
October 28, 2004 at 8:12 am
To those of you who want to know what a file extension was used for try the following site http://www.totallydrivers.com/resources/file_extensions.asp?id=N
there it states that NDX was used as Index file (dBase...
October 26, 2004 at 9:25 pm
Steve Jones, Many thanks the info was all I required .. and besides being a big technical help the articles were an interesting read ... again thank you
Am using the...
October 26, 2004 at 8:40 pm
Thanks for the quick response will follow up with the MS site and the articles it also suggests for further reading.
October 25, 2004 at 1:47 pm
Try this SQL will give you ALL tables and what SPs access the table
SELECT so.name, sob.name as 'Stored Procedure name' FROM sysobjects so LEFT OUTER JOIN (sysobjects sob left outer...
September 1, 2004 at 8:20 pm
First of all I would do the following (Using of course your table and column names)
Update dbo.customers set Region = 'unknown'
where (Region) IS NULL -- repeat for each column...
July 5, 2004 at 3:45 pm
Have you checked Excels help file? To verify that you are not exceeding Excels capabilities
Here is an extract from the help file for Excel 2003:
Excel specifications and limits
Worksheet and...
July 2, 2004 at 7:54 pm
Frank,
Just out of curosity I went to your links for error handling. All I can say is post these links often, it was a terrific read and realy, truly informative.
Thanks...
June 23, 2004 at 5:30 pm
Viewing 15 posts - 3,196 through 3,210 (of 3,220 total)