Viewing 15 posts - 3,151 through 3,165 (of 3,220 total)
Some points to look out for when creating the SP or just executing the OpenRowset command shown below.
1. Be sure the text file being accessed does exist on the...
February 13, 2008 at 8:54 am
Have run into this problem a few times when using VB in the application and found it to be due to:
1. On some path such as
...
February 11, 2008 at 2:21 pm
Using SSMS (SQL Server Management Studio)
Expand databases
1. Right click on database name
2. On drop down menu select Tasks
3. On next drop down menu select Generate Scripts
The Script...
February 9, 2008 at 12:50 pm
Here we go again with a poorly worded question:
From:
http://msdn2.microsoft.com/en-us/library/ms175490(SQL.100).aspx
"Hot Add Memory requires SQL Server Enterprise Edition and is only available for 64-bit SQL Server,
and for...
February 8, 2008 at 7:19 am
In response to Joe Clifford's comment "the business of delivering ice cream, nothing fancy and they have very little control over what their clients will order from day to day...
February 4, 2008 at 7:55 am
Wasn't the possible answer rather abbreviated: I suggest what is really required is:
A 64-bit system that supports hot-add CPU
...
February 1, 2008 at 1:56 pm
This might be of use to you
CREATE PROCEDURE Dbo.Parse_Charfieldforavalue_02
@HayStack VARCHAR(200),
@Find VARCHAR(50)
AS
DECLARE @Here Int
DECLARE @There Int
DECLARE @TheNeedle VARCHAR(200)
SET @Here = 0
SET @There = LEN(RTRIM(@HayStack))
SET @Here...
February 1, 2008 at 10:28 am
Roy,
Thanks for waking most of us up, and getting us to think and review the habits we have fallen into .. not only with the use...
January 29, 2008 at 7:19 am
Referring to BOL OPENROWSET
INSERT INTO OPENROWSET('Microsoft.Jet.OLEDB.4.0','Text;Database=D:\MSSQL\','SELECT * FROM Test.txt')
SELECT column01,column02, FROM yourtablename -- this is your select statement
Note: The file you want to write to must be located on...
January 22, 2008 at 8:00 am
Congratulations Steve - you have worked hard for all of us, and now Microsoft is recognizing your efforts.
Congratulations on...
January 5, 2008 at 2:47 pm
Use Excel itself to import the data as:
Open EXCEL
In main menu click "Data"
In drop down menu click "Import External Data"
In next drop down menu click "Import Data"
Select data source window...
January 2, 2008 at 11:25 am
Steve Jones - Editor (12/30/2007)
All answers have been marked correct.
More than I expected, and more than we deserve, no matter let me say thank you.
Now what are you...
December 30, 2007 at 1:57 pm
Agree with the fact that the question is not properly phrased for what it considered the correct answer.
NOW WILL SOME ONE BE NICE AND TAKE THE FLAG OFF...
December 30, 2007 at 10:16 am
I will turn 76 in the second quarter of 2008 and my work resolution is to keep on learning.
My personal resolution is to live healthy and make it to the...
December 28, 2007 at 12:57 pm
This will retrieve a bit more info about SP parameters
select 'SP name' = o.name, ParamName= c.name, DataType = t.name,
c.Length, Direction = case c.isoutparam
...
December 18, 2007 at 12:57 pm
Viewing 15 posts - 3,151 through 3,165 (of 3,220 total)