Viewing 15 posts - 2,221 through 2,235 (of 3,616 total)
Back in time of ADO (NOT .Net) the returned message sometimes was treated as a Recordset...
I didn't come across this problem with ADO but at one place I worked they...
December 11, 2006 at 1:03 pm
It doesn't matter what the system is there will always be someone who tries (and suceeds) to crack it.
In the UK there is a government database that has been set...
December 10, 2006 at 7:13 am
I have seen cursors out-perform a non-cursor method of looping through records.
The key is knowing exactly when a cursor is necessary or alternatively, when some nifty set based SQL will...
December 10, 2006 at 6:31 am
I am wary of anything that involves string manipulation because strings are immutable.
If you do something that says @YourString = @YourString + 'Some text' then what really happens is that
@YourString...
December 7, 2006 at 12:30 pm
I worked on government sites that required Urdu, Bengali, Gujarati, Punjabi etc.
The problem with those languages is that there is NO standard font for them and therefore you are at...
November 17, 2006 at 2:19 pm
I think the important thing is not what the standard is but the fact that there is a standard.
Company A may have a totally different standard than Company B but...
November 13, 2006 at 3:42 pm
I have come across a scenario where I have to move a table from an application specific database to a database that is shared by all applications.
Given that it is...
November 13, 2006 at 1:35 pm
I would vote for Innovasys DocumentX and Apex SQL Doc as documentation tools.
October 6, 2006 at 12:15 pm
OK I am particularly interested in developing CLR functions, aggregates and procedures.
Does anyone know of a download that would provide the datatypes or is there a general work around...
September 26, 2006 at 2:52 pm
I think censorship is OK provided it correctly identifies work related sites.
The problem comes in identifying those legitemate work related sites.
September 22, 2006 at 2:25 am
After shrinking the log look up ALTER DATABASE MODFIY FILE in Books on Line.
September 20, 2006 at 12:48 pm
Firstly back up the transaction log.
Next run sp_helpdb 'YourDatabaseName'
Note the name of the log device
now run DBCC SHRINKFILE('TheLogFileName','Your desired size')
September 20, 2006 at 4:36 am
If the server is a linked server then SQLServer1.pubs.dbo.checkcontract should have worked.
You do have to tell SQL Server to create a linked server with the appropriate credentials though.
September 19, 2006 at 5:17 am
When my contracted hours were lower I used to do a lot of research in my own time. My wife works nights and I work days so there are...
September 13, 2006 at 5:16 am
CREATE DEFAULT df_now AS GETDATE()
CREATE DEFAULT df_today AS CONVERT(SMALLDATETIME,CONVERT(CHAR(10),GETDATE(),102),102)
CREATE TYPE dbo.ty_now FROM DATETIME NOT NULL
CREATE TYPE dbo.ty_today FROM SMALLDATETIME NOT NULL
exec sp_bindefault 'df_now','ty_now'
exec sp_bindefault 'df_today','ty_today'
September 12, 2006 at 2:16 am
Viewing 15 posts - 2,221 through 2,235 (of 3,616 total)