Viewing 15 posts - 2,056 through 2,070 (of 5,356 total)
Don't know if it's publicly available, but I remember a free tool from Microsoft named Filltabl.exe. You might find it somewhere. You actually have if, when you own a copy...
June 30, 2004 at 6:13 am
but its getting changed to datepart(year,getdate())
What's so stupid about this???
SET NOCOUNT ON CREATE TABLE year_t ( year_now INT DEFAULT DATEPART(year,GETDATE()) ) INSERT INTO year_t DEFAULT VALUES SELECT * FROM year_t DROP TABLE year_t SET NOCOUNT OFF year_now ...
June 30, 2004 at 5:54 am
Mike,
you can use HTML tags even in your autosignature!
Makes it easier for people to visit your website
June 30, 2004 at 5:45 am
Just to add to Antares, you might find this document interesting.
HTH
June 30, 2004 at 5:37 am
David mentioned several places.
I'd like to add this site.
But don't forget, you can try to tune your server as you like, when your schemas are poor, all the tuning...
June 30, 2004 at 5:33 am
Mark,
you didn't mention that xp_regread is undocumented and therefore the use should be considered carefully ![]()
Rather than doing this from within SQL Server, I...
June 29, 2004 at 6:59 am
One might consider having a look at
INDEXPROPERTY(...,'IsUnique')
June 29, 2004 at 12:18 am
Just for completeness, sp_help returns also informations when a table contains such a column.
June 25, 2004 at 2:48 am
Sometimes something like this can be useful:
CREATE TABLE ID_T ( id INT IDENTITY ) INSERT INTO ID_T DEFAULT VALUES INSERT INTO ID_T DEFAULT VALUES SELECT IDENTITYCOL FROM ID_T DROP TABLE ID_T (1 row(s) affected) (1 row(s) affected) id ...
June 24, 2004 at 3:09 pm
You don't have backups, allow a developer to have such privileges...Do you also overclock your server? ![]()
Sorry, but I guess, you're pretty much out...
June 24, 2004 at 2:54 pm
Behold, that would mean spending the whole day with the kids! No, no ![]()
I just discovered, that posting to the german SQL...
June 23, 2004 at 5:38 am
Hi Dave,
long time, no see ![]()
Knew there was a way without convert but could not remember it
Showing your age?
June 23, 2004 at 5:22 am
But that would mean giving the user the right to run any SELECT statement they wanted. I only want them to be able to run the sp. Is it possible...
June 23, 2004 at 5:04 am
Viewing 15 posts - 2,056 through 2,070 (of 5,356 total)