Viewing 15 posts - 241 through 255 (of 484 total)
I would suggest looking at VBScript and the WMI objects. You can run a VBScript on one server to check objects (like services) on another server. Check http://www.microsoft.com/scripting (and...
May 19, 2006 at 6:58 am
In the past when I've had todo this, I loaded the DB2 Timestamp column into a varchar column, then had a computed column that converted the text to a datetime. ...
May 19, 2006 at 6:45 am
Hey! Finally a question easy for those of us that are develpors first (and dbas second). That keystroke combination is second nature for us!
May 15, 2006 at 9:54 am
I assume your concern is running 4 separate queries on the table ReportOpenItemsOverDue.
How about creating a table of the email addresses, then doing a cross-join on the email address table...
April 26, 2006 at 8:30 am
The hotfixes have been replaced by Service Pack 4. If you want both servers at the same level, it would be best to upgrade both to current service pack and...
April 26, 2006 at 8:19 am
It is likely that the table you have linked to does not have a primary key. The best way I can think what Access is doing, is that Access cannot...
April 26, 2006 at 7:20 am
And if you want some real life examples of storing documents in databases directly to refute your DBA, just look at MS SharePoint and MS Project Server. I've seen an Hyland...
April 14, 2006 at 2:48 pm
How about running a SQL query, using OPENDATASOURCE or OPENROWSET to access the flat file, and use SELECT TOP 1 ... for the query?
April 6, 2006 at 6:57 am
This has been in the forums fairly often. Check
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=165368
Basically, your delimiter would be "\",\"", but there a couple "tricks" you need to do for the first and last column. ...
March 29, 2006 at 8:09 am
If you are using Visual Basic.Net, you might consider using SQL Server Reporting Services. This is a free add-on for SQL Server, and I believe it does have a Report...
March 29, 2006 at 6:34 am
Jeremy;
Not sure of your question. You still need port 445 open, whether it is on XP or not, if you want to connect via Named Pipes. OS does not matter.
To...
March 28, 2006 at 10:44 am
This actually is a common question in relational databases. If you search here or on Google for heirarchical queries or bill-of-material queries, you can find many examples. Also, a good...
March 17, 2006 at 3:10 pm
How about just:
PRINT '-------- Utah Authors report --------' SELECT '----- Books by Author: ' + au_fname + ' ' + au_lname FROM authors WHERE state = 'UT' ORDER BY au_id
Then there is...
March 17, 2006 at 3:00 pm
What I will "usually" do for states in an application (again, it depends), is have a state table:
create table State(name char(2))
and put the state in the record itself (to use...
March 17, 2006 at 9:46 am
Viewing 15 posts - 241 through 255 (of 484 total)