Viewing 15 posts - 21,091 through 21,105 (of 26,484 total)
I'm sure I can help find an adapter or two if needed.
May 7, 2009 at 3:24 pm
Somewhat unrelated, I would also suggest moving away from ORDER BY 1 and move to using ORDER BY column_name.
May 7, 2009 at 3:04 pm
Check sp_trace_create in BOL. A problem I see withyour is options is set to 0, when it needs to be 2 for rollover.
May 7, 2009 at 2:50 pm
Florian Reischl (5/7/2009)
I got it. You have to specify an alias for the outer table. Since your table name is "holddups" and you refer it within your sub-query you cannot...
May 7, 2009 at 2:31 pm
Jamie Julius (5/7/2009)
May 7, 2009 at 2:25 pm
Query your data for this just this IP: 10.1.8.0. See if there are duplicate services. If so, you either need to add a distinct or determine if there...
May 7, 2009 at 1:30 pm
No. No reason to. Tempdb is recreated everytime SQL Server is restarted.
May 7, 2009 at 11:54 am
ssismaddy (5/7/2009)
Hi...How can I get the Same day of Last year?? please give me the sql query...Thank you
And what have you tried? Have you looked in BOL regarding...
May 7, 2009 at 11:28 am
mikesigsworth (5/7/2009)
My query now looks something like this:
DECLARE @sql nvarchar(MAX),
@OP nvarchar(9),
@Name nvarchar(128),
@Value...
May 7, 2009 at 11:27 am
nilkanth.desai (5/7/2009)
I understand that if i manually enter the ip addresses and services the code handles this, as I said it assumes I know all the IP addresses AND services,...
May 7, 2009 at 11:20 am
Here is the code I threw together:
CREATE TABLE dbo.customer_address
(
Customer_key NVARCHAR(100),
Provider_complete_Address NVARCHAR(150)
)
--===== Insert the test data into the test table
INSERT INTO customer_address
(Customer_key,Provider_complete_Address)
SELECT N'AALEMANSOUR, SIAMAK: 858256221','18141 BEACH BLVD STE 130*...
May 7, 2009 at 11:15 am
And then you have OP's like this one who think your test table (temp or table variable) are part of the solution...
I hear the desert calling my name...
May 7, 2009 at 10:54 am
I got it! The table variable with the test data, that is what you are talking about. No, you use the code Flo provided, but change it to...
May 7, 2009 at 10:51 am
nilkanth.desai (5/7/2009)
More or less, the code you sent assumes that I know the IP addresses and Services, however this is not the case, is there a way that I can...
May 7, 2009 at 10:49 am
Viewing 15 posts - 21,091 through 21,105 (of 26,484 total)