Viewing 15 posts - 2,446 through 2,460 (of 3,616 total)
Frank Buchan and David Reed both make the point about weaknesses in business analysis contributing to poor code quality.
Quality is something that needs to be something applied to throughout a...
February 1, 2006 at 12:06 pm
The INT method does not require any padding.
The user wants to query for a range of dates then
CREATE PROC dbo.MyQuery
@StartYear INT ,
@StartMonth INT ,
@EndYear INT ,
@EndMonth INT
AS
DECLARE @StartPeriod INT ,@EndPeriod...
February 1, 2006 at 12:06 pm
You could use an INT (4 bytes) and record February as 200602
You could use SMALLINT (2 bytes) and record February as 602. Of course your would face the a...
February 1, 2006 at 8:00 am
I saw something like this years ago in an Australian television program.
I believe that these windmills are called Darrius windmills.
The BBC played part of George Bush's state of the...
February 1, 2006 at 1:27 am
Try RESTORE DATATASE [Your-database-name]
January 30, 2006 at 6:46 am
set dtsPackage = DTSGlobalVariables.Parent
Set sourceConnection = dtsPackage.Connections("Text File (Source)")
sourceConnection.DataSource = DTSGlobalVariables("PollingBaseDirectory").Value
The preceding 3 lines are in a DTS I use to upload a text file as specified in...
January 30, 2006 at 6:00 am
You want to take a look at the SQLXMLBULKLOAD process. There are lots of threads on the site but I had a similar problem to you and got
January 27, 2006 at 1:22 am
The ZIP is on a local drive.
I will try and use StdOut but I am not optimistic.
January 26, 2006 at 8:12 am
Brian,
You forgot to mention the snippets!
type in ssf and press TAB and you get SELECT * FROM.
You can add your own as well so I have set up
derr to bring...
January 25, 2006 at 1:54 am
I should like to get my full MCDBA but it is expensive and ultimately I don't think it is reasonable to expect a company to pay for it all, however,...
January 25, 2006 at 1:46 am
If it is doing it during DEBUG I would suggest printing the LEN and the CODE() for the character that is being passed in.
Clearly DEBUG is translating the space in...
January 24, 2006 at 11:24 am
The only way that I can think of is to use an OPENROWSET and predefined connection but that isn't a way I would choose to do it.
Are you using Windows...
January 24, 2006 at 11:21 am
Viewing 15 posts - 2,446 through 2,460 (of 3,616 total)