Viewing 15 posts - 2,266 through 2,280 (of 3,678 total)
Don't forget Innovasys DocumentX. It covers SQL Server, Oracle, Access and also does .NET assemblies, Visual Studio projects, ActiveX and VBA.
After using a proper tool I wouldn't use a...
January 12, 2007 at 11:50 am
I'll be 40 in February and the past two years have been an eye opener.
I left a job that paid well, was within cycling distance of home and had colleagues...
January 5, 2007 at 2:32 pm
If anyone is interested the SQL2000 equivalent is
USE Master
GO
CREATE PROC dbo.sp_DBA_spaceused_AllTables2
@updateusage varchar(5)='false'
AS
SET NOCOUNT ON
IF @updateusage IS NOT NULL
BEGIN
-- Allow for case sensitivity
SET @updateusage=LOWER(@updateusage)
IF @updateusage NOT IN ('true','false')
BEGIN
RAISERROR(15143,-1,-1,@updateusage)
RETURN(1)
END
END
-- Retrieve the current... January 5, 2007 at 2:19 pm
I seem to remember that there is a non-documented stored procedure that runs the resultset of a query.
In some situations I do build up a string of commands and then...
December 29, 2006 at 10:30 am
Thanks for the comments Andy and Jeff. I don't get too worried about criticisms, we are fortunate enough to live in a democracy and as Voltaire said.
I disapprove of...
December 24, 2006 at 6:00 am
What do you get when you cross a sheep with a bee?
Baa Hum Bug
December 24, 2006 at 5:32 am
I've got to put up a Christmas tree, swear at the lights, murder a few carols and fight with relatives, but I will give it a go after Christmas and...
December 22, 2006 at 9:55 am
In 192.168.2.10 the octets would be as follows
Would I be correct in thinking that by using the most changing octet SQL Server is most likely to think that the...
December 22, 2006 at 9:44 am
I don't think that there is any easy answer.
One of the examples in the "Update your development skills to SQL2005" course uses a CLR datatype to hold an IP address.
I...
December 20, 2006 at 1:15 pm
Thanks, but the WHERE Oct_1 IN () clause doesn't really provide an easy solution.
I can't remember the specific IP address range for the Google ROBOT but similar exclusions look for...
December 20, 2006 at 12:40 pm
Our data analysts wanted to build a model that excluded IP addresses in a pretty obscure range
The problem was coming up with a simple query that would work on...
December 19, 2006 at 4:10 pm
The IP Address problem is one that I am facing.
When stored as a string it is a VARCHAR(15), it is human readable but difficult to do range searches.
When stored as...
December 19, 2006 at 11:29 am
I was in two minds as to whether to submit this article to SSC. My concern was that it was a little simplistic. Given David Vaughan's response suggests...
December 19, 2006 at 11:14 am
Along time ago I came across something that said that VB always stored integers as 32 bit values regardless of whether they were Byte, Short, or Long (long in those...
December 18, 2006 at 12:40 pm
I think this sort of thing can fundamentally affect the employee/employer relationship.
As an employee I have a duty of care for company resources. An employer has a duty of...
December 15, 2006 at 1:08 pm
Viewing 15 posts - 2,266 through 2,280 (of 3,678 total)