Viewing 15 posts - 1,501 through 1,515 (of 2,487 total)
I don't recall anything that shows different database limitations between SQL Standard and Enterprise.
However, I'd say with the 2 GB memory limitation in SQL Standard, you're likely to run into performance...
--------------------
Colt 45 - the original point and click interface ![]()
February 21, 2005 at 11:46 pm
While the script above is handy, it doesn't work if you don't have Excel installed on the server.
I did have an occasion to import a SYLK file in a previous...
--------------------
Colt 45 - the original point and click interface ![]()
February 21, 2005 at 11:38 pm
Do you have to use BCP? DTS has a builtin Datetime transformation.
Is the destination table the final destination, or is it a staging table. If it's not a staging table,...
--------------------
Colt 45 - the original point and click interface ![]()
February 21, 2005 at 11:25 pm
Firstly, I don't know why you would waste time fiddling with this when DTS has a perfectly usable datapump that exports to Excel.
The error that you're getting is because it's...
--------------------
Colt 45 - the original point and click interface ![]()
February 21, 2005 at 9:36 pm
Don't know why you have
WHERE Convert(VARCHAR,GLPeriod) + '/' + Convert(VARCHAR,GLYear) IN ( SELECT Convert(VARCHAR,GLPeriod) + '/' + Convert(VARCHAR,GLYear)
As you're doing the concatenation in the where and the select, couldn't...
--------------------
Colt 45 - the original point and click interface ![]()
February 21, 2005 at 9:32 pm
Ummm ... sorry ... just remove the "del" from the first line.![]()
--------------------
Colt 45 - the original point and click interface ![]()
February 21, 2005 at 9:23 pm
How many records are in each table? The main problem I see with queries using IN and EXISTS is the number of reads that are being performed.
You could try the...
--------------------
Colt 45 - the original point and click interface ![]()
February 21, 2005 at 8:34 pm
A quick "google" on the HRESULT returns
"0x80040E4D -2147217843 Authentication failed"
Pretty much points the finger at permissions ![]()
--------------------
Colt 45 - the original point and click interface ![]()
February 21, 2005 at 8:30 pm
Table variables cannot be sent to the client as this is an SQL Server specific datatype.
The PRINT statement is handy for issuing status messages when you're executing an SQL statement,...
--------------------
Colt 45 - the original point and click interface ![]()
February 21, 2005 at 8:26 pm
Without getting into the reasoning for the two databases, the best solution will probably be triggers. You should put a trigger on each table to check the other table whenever...
--------------------
Colt 45 - the original point and click interface ![]()
February 21, 2005 at 6:47 pm
This any help?
http://msdn.microsoft.com/archive/default.asp?url=/archive/en-us/dnarsqlsg/html/msdn_interntl.asp
--------------------
Colt 45 - the original point and click interface ![]()
February 20, 2005 at 9:16 pm
As per Books Online, the default must be a constant or NULL.
You could re-code your stored procedure like this,
CREATE PROC NWtest @endDate datetime = NULL ASIF @enddate IS NULL SET...
--------------------
Colt 45 - the original point and click interface ![]()
February 20, 2005 at 8:12 pm
My stock of invitations has also returned to 50. Family and Friends have already profited.
Any further takers?
--------------------
Colt 45 - the original point and click interface ![]()
February 17, 2005 at 9:09 pm
I'm presuming that you have an integer value for each date.
Given your de-normalised structure, how do you find out the attendance for a month, quarter, year ??
Maybe if you post...
--------------------
Colt 45 - the original point and click interface ![]()
February 17, 2005 at 9:04 pm
To locate the version information, type the URL of the report server (for example, <A href="http:///reportserver">http://<exampleWebServer>/reportserver). At the bottom of the page you should be able to see the version.
RTM...
--------------------
Colt 45 - the original point and click interface ![]()
February 17, 2005 at 5:48 pm
Viewing 15 posts - 1,501 through 1,515 (of 2,487 total)