Viewing 15 posts - 7,816 through 7,830 (of 26,490 total)
Something more like this maybe:
use SandBox; -- Move to a SandBox database for testing
go
create table dbo.ConversionsTest (
ActDate date,
AdId int,
...
April 26, 2013 at 1:28 pm
Jack Corbett (4/26/2013)
Grant Fritchey (4/26/2013)
jasona.work (4/26/2013)
As for smuggling back Canucks, do we...
April 26, 2013 at 11:01 am
jdbrown239 (4/26/2013)
You guys were right about the 'Where' clause being the issue. I added a few indexes to the table to increase performance and went back to a suggested 'where'...
April 26, 2013 at 9:45 am
I'm not going to ask you for the DDL for the tables, or sample data, or expected results. I would like to see and ERD with the tables (including...
April 26, 2013 at 9:23 am
If a phone number can only belong to one entity, why are you trying to make it a many to many relationship?
April 26, 2013 at 7:55 am
Here is one of your queries reformatted to make it more readable. I am concerned about the WHERE clause. You are using both AND and OR in the...
April 26, 2013 at 7:49 am
zi (4/26/2013)
is it correct to convert the recovery model to simple then shrink the log fileThanks
Read the blog post that Grant provided you a link to above.
Your t-log is growing...
April 26, 2013 at 7:26 am
Start with your original post and the three sample records you provided. Does this recurse forever?
What is your expected results based on those three sample records?
April 26, 2013 at 7:23 am
DKN2101 (4/24/2013)
If i do:
SELECT MAX(Revenue_Spend) AS "Largest Amount Spent" FROM MaxCents
I get the max amount spent, but I can't figure out how to get it to display...
April 26, 2013 at 7:17 am
Sqlism (4/25/2013)
declare @max-2 numeric(18,0)
declare @parts numeric(18,0)
select @min-2 = 102201011472463 ,
@max-2 = 102201354392808,
@parts = 3480
declare @increment int = (@max - @min-2) / @parts while @max-2 >= @min-2
begin...
April 25, 2013 at 4:41 pm
I think mine is very similar to Sean's:
declare @Parts int = 5,
@InitialValue bigint = 5000000000000480,
...
April 25, 2013 at 4:30 pm
GilaMonster (4/25/2013)
No, it was aimed at me. The "previous comment" was when he called me a pedant for asking for more information. http://www.sqlservercentral.com/Forums/Topic1446457-392-1.aspx
No, I agree that he was telling you...
April 25, 2013 at 12:51 pm
GilaMonster (4/25/2013)
Really? http://www.sqlservercentral.com/Forums/FindPost1446662.aspxI get called out for not answering, I get called out for answering. What the...??
Me thinks the wrong person was told to take a chill pill. I...
April 25, 2013 at 12:33 pm
Abu Dina (4/25/2013)
April 25, 2013 at 12:31 pm
If you are crossing databases the user needs access to the table(s) in the other databases.
April 25, 2013 at 12:29 pm
Viewing 15 posts - 7,816 through 7,830 (of 26,490 total)