Viewing 15 posts - 6,226 through 6,240 (of 14,953 total)
I guess I don't understand what you're asking.
What type of data does your "ontime" column contain? What does the sum of it look like?
November 4, 2010 at 2:23 pm
sturner (11/4/2010)
November 4, 2010 at 2:19 pm
Something like this:
CREATE TABLE #T (
ID INT IDENTITY PRIMARY KEY,
RawVal VARCHAR(10),
CalcVal FLOAT);
DECLARE @String VARCHAR(10), @Cmd VARCHAR(1000);
SELECT @String = '10*5';
SELECT @Cmd = 'insert into #T select ''' + @String + ''',...
November 4, 2010 at 2:17 pm
A CLR proc called by an outer proc has access to temp tables created in the calling proc, just like any other subproc does.
Or run the query in the CLR...
November 4, 2010 at 2:12 pm
I guess it depends on what you want to do. Are you just looking for making the password expire after a certain amount of time, or for password complexity,...
November 4, 2010 at 2:06 pm
Don't do anything that involves splitting the unit up. You're going to end up with headaches later from rounding issues. And any sort of inventory control/tracking becomes problematic....
November 4, 2010 at 2:05 pm
From what I understand (could easily be wrong), OpenQuery can't do anything a linked server connection can't do. It's just a little more ad hoc than those are. ...
November 4, 2010 at 2:02 pm
Enabling password policy in SQL Server, unless I'm badly mistaken, makes SQL Server use the policies from Active Directory (Windows security).
November 4, 2010 at 1:56 pm
DECLARE
@SDateTime DATETIME,
@EDateTime DATETIME ;
SELECT
@SDateTime = '11/4/10',
@EDateTime = GETDATE() ;
;
WITH Numbers(Number)
...
November 4, 2010 at 1:56 pm
Use Jason's (Cirque's) solution. That filters it the right way for that kind of thing.
November 4, 2010 at 1:51 pm
Leo.Miller (11/4/2010)
Lowell (11/4/2010)
He may not be familiar with sp_help...
November 4, 2010 at 1:51 pm
Looks like it could be solved by explicitly selecting the string as part of a dynamic SQL statment.
Something like:
DECLARE @String VARCHAR(10), @Cmd VARCHAR(1000);
SELECT @String = '10*5';
SELECT @Cmd = 'select '...
November 4, 2010 at 1:46 pm
Try sending it as a string, then converting it once shredded.
November 4, 2010 at 1:43 pm
GilaMonster (11/4/2010)
Lynn Pettis (11/4/2010)
Gail, Sounds like all future informal conversations will need to include a member of management.
The 'informal conversation' today (3rd time same issue) had the Project manager present,...
November 4, 2010 at 1:42 pm
There is a Round() function. You should be able to wrap that around the Sum() function in your first query. Have you tried that?
November 4, 2010 at 1:40 pm
Viewing 15 posts - 6,226 through 6,240 (of 14,953 total)