Viewing 15 posts - 121 through 135 (of 137 total)
Nope. I'm not sure. This is the quote from http://www.4guysfromrolla.com/webtech/022801-1.shtml that lead me to the conclusion:
(If you are wanting to create Excel spreadsheets and graphs without requiring Excel's...
January 5, 2002 at 1:21 pm
I'd never use parameters.refresh as a production method. I'm only trying to populate the parameters table mentioned in my second post. I need to get the values from...
January 5, 2002 at 1:08 pm
Thanks guys, but I think I'll end up just using parameters.refresh in ADO. It's not as slick as doing it all in SQL, but it works and there's one...
January 4, 2002 at 8:22 pm
UGH! I just typed an explination but lost it because I wasn't logged in.
We have a report application that builds itself based on tables.
Report
Parameters
Validations
ParameterValidations
Report - stored procedure...
January 4, 2002 at 3:40 pm
The office web control, I believe, will instanciate an instance of Excel on the web server to create the object. That's not only resource intensive, but slow as well.
Let me...
January 4, 2002 at 11:09 am
I hope I'm not doing your homework for you Troy. This should get you to the first day of the week:
@@DateFirst tells you what sql server is set to use...
January 3, 2002 at 12:07 pm
or try these:
ALTER FUNCTION dbo.FirstDay (@DateValue smalldateTime)
RETURNS smallDateTime
AS
BEGIN
select @DateValue = dateadd(dd, -(day(@datevalue)-1), @datevalue)
return @DateValue
END
CREATE FUNCTION dbo.LastDay
(
@DateValue SmallDateTime
)
RETURNS SmallDateTime
AS
BEGIN
select...
January 3, 2002 at 11:29 am
Here's a really slick control that'll do the trick and more!
January 2, 2002 at 9:06 pm
If you're using the results from these two queries in ADO, use NextRecordset to loop through one then the second result set.
January 2, 2002 at 6:48 pm
declare @sql nvarchar(1000)
declare @name varchar(10)
set @name = 'name'
select @sql = 'if exists(select * from syscolumns where name = '''+ @name + ''') begin select 1 end else begin select 0...
January 2, 2002 at 6:45 pm
I was more concerned with IO performance when bringing in large (40 meg) files. This was my DBA's take:
<snip>
SQL server boxes should only contain database files, database log files,...
August 24, 2001 at 4:19 pm
New question along the same lines... I'm still importing a text file. Now the debate is over where the file should be during the import. My instincts tell...
August 24, 2001 at 1:00 pm
If users are going to update data in your table with Access, and you go with a bit field, it is important to set a default value on the field...
August 14, 2001 at 3:05 pm
quote:
You can let users other than SA have access to xp_cmdshell. Not a good idea, but it is an option. Bulk insert...
August 7, 2001 at 2:49 pm
I run bcp into a generic table:
@sql = 'create table tempTable + @@spid
(data varchar(1000))'
sp_executesql @sql
The whole text file gets dumped into the data field. How can I append...
August 7, 2001 at 2:30 pm
Viewing 15 posts - 121 through 135 (of 137 total)