Viewing 15 posts - 7,036 through 7,050 (of 7,498 total)
Some vendors generate ddl which only contains NVARCHAR alphanumeric columns.
Why ? "Just because we do."
IMO this way the used components can...
May 11, 2004 at 12:28 am
IMO if you implement "ON DELETE CASCADE", you have to inform everybody who codes against your db who has write/delete permissions.
- Is it a good practise ? I'm not defaulting...
May 11, 2004 at 12:20 am
I ran this on sql2k sp2 ![]()
use northwind
go
dbcc freeproccache
go
create proc palzdbatest
as
DECLARE @IntVariable INT
DECLARE @SQLString NVARCHAR(500)
DECLARE @ParmDefinition NVARCHAR(500)
SET @SQLString =
N'SELECT * FROM employees...
May 10, 2004 at 12:16 am
helas, with sql7 there is no xp_sqlagent_proxy_account ![]()
May 6, 2004 at 9:01 am
how is this working for SQL7.0 sp4 ?
![]()
I've seen...
May 3, 2004 at 8:06 am
"DATEADD(mm,-4,GETDATE())" would be preferable because that way, at.ass_stopdate will still be sargeble and it's index (?) might be used ![]()
May 3, 2004 at 6:08 am
select year(datetimecolumn) as Year_datetimecolumn
, month(datetimecolumn) as Month_datetimecolumn
, count(*) as Counter
from mytable
group by year(datetimecolumn)
, month(datetimecolumn)
order by Year_datetimecolumn, Month_datetimecolumn
![]()
May 3, 2004 at 6:02 am
correct, but what about sqluser-id's and their password ? ![]()
Windows-ids can be relinked with this script ![]()
SELECT 'if not...
April 30, 2004 at 2:48 am
follow the ms-workaround ? ![]()
WORKAROUND
To avoid this problem, do not use the NOLOCK hint or the READ UNCOMITTED transaction isolation level, or do not run...
April 30, 2004 at 12:20 am
- SQL2000 ? (sql7 has more pitfalls)
- If you only want to move user-db, you might consider to use the copy-database-wizard. This will have unavailability of the db at the...
April 30, 2004 at 12:08 am
there is migration-software on the marked. I just cannot recall the providers company-name.
The where present at last years PASS-conference in Seattle.
April 29, 2004 at 11:58 pm
You will have to alter the object-owner !
this may help out :
Select 'print '' object : ' + u.name + '.' + o.name + ''' ' + char(13) + ' go...
April 29, 2004 at 12:35 am
- keep in mind that sql also has to manage rowlayout, nullable columns also have the need for management-place (1 byte per 7 nullable columns). Check "dbcc showcontig" for your...
April 28, 2004 at 12:11 am
Every time sqlserver starts (or starts a db) it will check if data is consistent. ![]()
If it detects there were running transactions at...
April 27, 2004 at 11:48 pm
sysdepends may give you the inventory.
sp_refreshview @viewname = 'viewname' may perform what you are looking for
April 27, 2004 at 2:16 pm
Viewing 15 posts - 7,036 through 7,050 (of 7,498 total)