Viewing 15 posts - 1 through 15 (of 38 total)
Thank you John, that looks very promising.
Steve
February 6, 2012 at 6:49 am
Not used table variables before, but they look good to me!
DECLARE @item TABLE (
itm_serial int NOT NULL IDENTITY(5000,1),
itm_item varchar(43) NOT NULL,
itm_desc varchar(100) NOT NULL)
INSERT INTO @item
SELECT itm_item, itm_desc
FROM (SELECT itm_item,...
February 6, 2012 at 5:49 am
Something like that, but for SQL 2000 🙂
CREATE TABLE #testitem (
itm_item varchar(43) NOT NULL,
itm_desc varchar(100) NOT NULL,
wsd_quantity int NOT NULL)
INSERT INTO #testitem
SELECT 'CHCWPSU10DMX','Chroma-Q Color Web Power Supply Unit For 160...
February 6, 2012 at 5:42 am
Maybe I am doing this wrong, but here is my test:
DECLARE @serverup int
SELECT @serverup = (SELECT TOP 1 1 FROM ACET.master.dbo.sysdatabases)
IF @@ERROR <> 0 SELECT @serverup = 0
IF @serverup =...
October 21, 2009 at 6:32 am
I have been using a similar script on a website I manage, but it needs an overhaul, maybe this is something you could bare in my mind for your script.
The...
April 6, 2009 at 4:24 am
I think I have it:
SELECT U.pbu_manid, dbo.tblManufacturer.web_manufacturer, U.pbu_div, U.pbu_url
FROM dbo.tblPricebookUpdates U INNER JOIN
...
December 19, 2008 at 10:53 am
Hi Seth,
That is making sense now, thank you for explaining it.
Now I just need to get SSMS to create insert data sql for to me to post sample data...
December 12, 2008 at 10:12 am
Seth, thank you, I did think you were nuts to begin with but I saw your error and was about to correct it. Due to different collations I added the...
December 12, 2008 at 9:45 am
Chris Morris (11/18/2008)
Dooza (11/18/2008)
November 18, 2008 at 7:28 am
We have a Hob Goblin too, its where I usually end up at the end of the night as its always open late and doesn't attract your usual townies. I...
November 18, 2008 at 7:21 am
Which pub in Reading? I visit every now and then, as I only live in High Wycombe.
November 18, 2008 at 7:03 am
Its nice seeing a post turn off-topic without being shut down immediately.
November 18, 2008 at 6:55 am
Jeff Moden (11/18/2008)
November 18, 2008 at 5:18 am
Viewing 15 posts - 1 through 15 (of 38 total)