Viewing 15 posts - 5,671 through 5,685 (of 13,460 total)
looks like licensing:
licensed for cores on the hardware, or optionally with client cal licenses:
http://www.microsoft.com/sqlserver/en/us/get-sql-server/licensing.aspx
Lowell
March 30, 2012 at 11:49 am
SET QUOTED_IDENTIFIER OFF
USE "SandBox";
select * from sys.tables
--above shows a syntax error
GO
SET QUOTED_IDENTIFIER ON
USE "SandBox";
select * from sys.tables
--above works just fine
Lowell
March 30, 2012 at 10:02 am
Charmer (3/30/2012)
Lowell (3/30/2012)
Create view TableToday
AS
select
DATEADD(dd, DATEDIFF(dd,0,getdate()), 0) As TheDate,
GETDATE() as TheDateTime,
edit: misread the question...thought you wanted...
Lowell
March 30, 2012 at 9:33 am
anthony.green (3/30/2012)
Lowell
March 30, 2012 at 8:59 am
i think that syntax was valid for 2000, but not 2005 and above;
as i remermber it the solution is simple...
include the sd.SalesOrderId in the select, and
i believe...
Lowell
March 30, 2012 at 8:39 am
both answers help me visualize this a lot, thanks guys;
The Coupon/Discount table's the way I'm thinking as well...it's like Sean said, the discounts apply to the order, not the individual...
Lowell
March 30, 2012 at 8:34 am
how about a view, so you have the date? is that what you want?
Create view TableToday
AS
select
DATEADD(dd, DATEDIFF(dd,0,getdate()), 0) As TheDate,
GETDATE() as TheDateTime,
edit: misread the question...thought you wanted a table...
Lowell
March 30, 2012 at 8:21 am
the error 'cannot assign a default variable' shows the script is for 2008+, and you are running it on 2005;
it'll need a couple of minor tweaks.
Lowell
March 30, 2012 at 6:08 am
i would prefer to track the cost price and the retail price, and calcuate the percentage of markup myself.
so often the retail price is going to end in "9", to...
Lowell
March 30, 2012 at 6:05 am
if this helps anyone, or generate suggestions for my process, great!
this is exactly how i do it.
in my case, i need an individualized email for each recipient...no emails with mulitple...
Lowell
March 29, 2012 at 10:33 am
pragyan.banerjee (3/29/2012)
I have all the credentials handy but still I couldn't connect to a database from enterprise manager,
its giving the reason :"Sql server not exist or access denied".
My question...
Lowell
March 29, 2012 at 7:10 am
i'm already leaning towards a not null constraint violation; every column in the table is defined as not null, so if the entity framework creates a command with a null...
Lowell
March 28, 2012 at 4:26 pm
how about adding another server side trace that captures all errors and warnings , and limit it to just the database in question.
http://support.microsoft.com/kb/199037
then you might see that some basic error,...
Lowell
March 28, 2012 at 12:34 pm
ok two questiosn for you:
you are getting TOP 10 from each database with no ORDER BY...were you trying to get slow running queries? ie the ones with a long elapsed...
Lowell
March 28, 2012 at 11:52 am
another issue to consider: is there a trigger on the table in quesiton? if the trigger fails, the insert fails, and the data "disappears" like you seem to be identifying.
could...
Lowell
March 28, 2012 at 11:32 am
Viewing 15 posts - 5,671 through 5,685 (of 13,460 total)