Viewing 15 posts - 4,216 through 4,230 (of 13,464 total)
Google says it can be found here:
http://adventureworksdw2008.codeplex.com/releases/view/86762
December 18, 2012 at 1:31 pm
anthony.green (12/18/2012)
December 18, 2012 at 10:48 am
stating the obvious here, you should immediately remove that persons access to SQL server, and change the sa /other admin passwords.
make sure whatever application that is used to connect does...
December 18, 2012 at 8:56 am
another way to get your row counts; the indexes have the rowcounts built into the sys view:
--for 2005/2008:
Select OBJECT_NAME(object_id) as TableName,SUM(rows) as NumRows,index_id
From sys.partitions p
...
December 18, 2012 at 8:54 am
you can turn off the sp_execute scripting, so it's a cleaner CREATE / ALTER PROCEDURE.... by changing a flag the flag "Include IF NOT EXISTS Clause" in the scripting...
December 18, 2012 at 8:24 am
safzalhussain (12/18/2012)
December 18, 2012 at 7:41 am
GilaMonster (12/18/2012)
December 18, 2012 at 6:21 am
Jack 95169 (12/18/2012)
Nearly...You need to enable XP_cmdshell beforehand
I've also done a bit of tidying up
wow Jack you replied to a ten year old thread!
December 18, 2012 at 6:06 am
it starts out pretty much like every other desktop install around the office that is connecting to Oracle.
Use the oracle universal installer to install the client tools. See your It...
December 17, 2012 at 3:34 pm
well my colA and ColB resulsts seem to Me to be correct;
your expected results for ColB, where it's supposed to be by rank, doesn't match the data, i think.
ColC and...
December 17, 2012 at 2:26 pm
mkarthikeyyan 89837 (12/17/2012)
Please help to solve this !!!
i need to create tables and insert values in following tables, the scenario is
create table tbl1(tbl1_col1 int primary key ,tbl1_col2 int)
create table tbl2(tbl2_col1...
December 17, 2012 at 1:17 pm
for the other direction, when you have the full SSMS and you connect to a lesser isntance, it varies based on what you connect to; i have 2012 developer installed,...
December 12, 2012 at 3:31 pm
CELKO (12/11/2012)
December 12, 2012 at 11:29 am
as suggested: changinbg old style join to new style ansi JOIN..ON:
SELECT
tblTransactions.PO_Number,
tblTransactions.PO_Date,
tblTransactions.Quantity,
tblTransactions.Software_Description,
tblTransactions.Unit_Price,
tblTransactions.SoftwareShortName,
tblTransactions.Transaction_Number,
tblTransactions.Transaction_Type,
tblBulkPurchases.Quantity_Remaining,
...
December 12, 2012 at 9:32 am
Stuart what is the relevance of this WHERE statement coming from?
WHERE ttask.id = 23
are you only capturing queries that match a certain task type?
it looks to me like that would...
December 12, 2012 at 8:30 am
Viewing 15 posts - 4,216 through 4,230 (of 13,464 total)