Viewing 15 posts - 37,816 through 37,830 (of 39,456 total)
The service manage provides a GUI for the net start and net stop command lines. If you have windows rights to do this, you can execute this. It has nothing...
March 6, 2002 at 10:20 am
The collation is the code page and sort order used for the table. This affects storage and display. In older versions of sql, there was a single code page and...
March 6, 2002 at 10:13 am
I noticed something similar investigating the use of a stored procedure with two queries and switching. The sproc still appeared to alter its plan without a recompile. Not sure, but...
March 5, 2002 at 5:07 pm
Don't think so. Someone posted a link to a util (bii.exe) in the resource kit to load images or binary fields.
Steve Jones
March 5, 2002 at 5:04 pm
In 2000, I believe this is also stored at the database and table level. You might need to rebuild the table.
In EM, if you go to the table, right click,...
March 5, 2002 at 5:01 pm
I guess DMO would work. Haven't tried it.
Could write something in VBScript to load each package and then resave it.
Steve Jones
March 5, 2002 at 4:02 pm
March 5, 2002 at 3:59 pm
you might have them. Consider that portland has both a Maine and an Oregon entry. The index structure could be more compact since there could be more cities under Oregon....
March 5, 2002 at 3:43 pm
March 5, 2002 at 3:40 pm
March 5, 2002 at 3:39 pm
A few ways. If this is strict sql, I'd do
where datepart( year, mydate) = datepart( year, getdate())
and datepart( month, mydate) = datepart( month, getdate())
and datepart( day,...
March 5, 2002 at 3:38 pm
March 5, 2002 at 3:37 pm
Don't think it affects performance. Likely the parser handles this, so the query engine will not even see it.
I ALWAYS use aliases.
Steve Jones
March 5, 2002 at 12:45 pm
can you post your code? I am not sure what you are describing?
Try this:
create table MyTable
(MyPK int
, MyID int
, MyChar char(4)
)
go
create trigger MyTable_Update on MyTable for Update
as
if Update(MyID)
...
March 5, 2002 at 11:42 am
No way to force this. Another argument for NT Authentication. Otherwise you'd have to write some process as suggested above.
Steve Jones
March 5, 2002 at 11:23 am
Viewing 15 posts - 37,816 through 37,830 (of 39,456 total)