Viewing 15 posts - 10,366 through 10,380 (of 13,461 total)
i've done this all via TSQL; I happen to also get all the scripts in FK hierarchy order as well.
this has a dependancy for the procedure sp_GetDDL, which gets any...
October 30, 2009 at 9:49 am
i use this and stick it in master:
usage is simply sp_kill databasename
this is simliar to Sanjay's, but a little more robust on a couple of validation things like your own...
October 30, 2009 at 9:13 am
Shabba (10/30/2009)
the unregisted version of Editplus is free, with only a single nag screen at startup. it is completely full featured, with just a reminder screen .
hmmm... can only seem...
October 30, 2009 at 8:16 am
Shabba (10/30/2009)
Thanks for all the responses. Lowell that's exactly what i'm after do you know of a free alternative to EditPlus?Cheers,
Mark
the unregisted version of Editplus is free, with only...
October 30, 2009 at 7:51 am
i use the cliptext feature of Editplus to save all my snippets and valuable code; i try to organize with a keyword and brief description;
if i double click on the...
October 30, 2009 at 7:15 am
ok, if things run under a default account like you said, this is my next guess: does it return the correct results?
Select
'Sept'as mnth,
td.tdes_m,
tran_x,
...
October 30, 2009 at 5:31 am
this is just a guess, but i think this would return a result set for all of your numbers, so you can avoid a cursor.
Select
'Sept'as mnth,
...
October 29, 2009 at 5:48 pm
I'm sure the CrLf is in there, it's just not visible based ont he tools you are using;
Proof: you said it looks like this:
Dear Committee Member,
We'd like to invite you...
October 29, 2009 at 12:57 pm
Best practice is for each column you need to change should have a single ALTER TABLE statement for it.
your syntax was way off, probably just peudocode, but the example below...
October 29, 2009 at 11:19 am
i'm pretty sure there is a CHAR(13) + CHAR(10) in there, that you are not seeing, but is part of the data...THAT is what is getting replaced witha < br...
October 29, 2009 at 10:03 am
faijurrahuman17 (10/29/2009)
HOW CAN I CHECK WHETHER THE RIGHTS ARE ENABLEDOR OTHER WISE
HOW TO ASSIGNED THE RIGHTS
the error message from MS was really good; it basically said to check the Surface...
October 29, 2009 at 6:26 am
search for "ProperCase" in the scripts section for even more ways to do this;
here's an old example which assumes a Tally Table exists:
--===== Create and populate the Tally table on...
October 28, 2009 at 5:50 pm
do you mean like this:
SELECT DISTINCT
CONVERT(CHAR(50),'ecd or emm') AS RESULTS,
...
so that it is say, 50 chars, padded with whitespace?
October 28, 2009 at 11:39 am
i have this saved in my snippets from a similar post:
--Security List Admin rights
EXEC sp_MSForEachDB 'SELECT ''?'' AS [Database Name], su1.name AS [Database User Name], su2.name AS [Database Role]
...
October 28, 2009 at 8:54 am
well, you can check the status of the databases:
select * from sys.databases where state_desc <> 'ONLINE'
--possible values:
/*Database state:
0 = ONLINE
1 = RESTORING
2 = RECOVERING
3 = RECOVERY_PENDING
4 = SUSPECT
5 =...
October 28, 2009 at 7:32 am
Viewing 15 posts - 10,366 through 10,380 (of 13,461 total)