Viewing 15 posts - 271 through 285 (of 514 total)
Sounds like you server is splitting the report over multiple sessions. By converting these to global temp tables you are now limiting it so that you CANNOT run more...
October 17, 2007 at 9:32 am
I must be missing something here. How are we updating tables that were deleted.
CREATE TABLE #x(a INT)
INSERT INTO #x(a) VALUES (10)
DROP TABLE #x
UPDATE #x
SET a=20
That doesn't work for me......
October 17, 2007 at 5:56 am
We upgraded to 2005 in July. Personally I wouldn't count on 2008 to be "Safe" until at least this time next year.
I don't know that I would wait...
October 15, 2007 at 10:34 am
Yes, this works. 🙂 Have fun.
You will need to create the view first, but I am sure you could even code that in too.
CREATE TABLE [view_config](
[view_name] [sysname] NOT...
October 15, 2007 at 9:48 am
The OP was to add the table name to a view. What was asked is NOT possible. However, the dynamic SQL is, and an alternate of it would...
October 15, 2007 at 9:28 am
I don't believe there is any way to do it with the interface. In the registry you can modify several default locations.
However, in most cases as I...
October 11, 2007 at 6:25 am
TheSQLGuru (10/10/2007)
October 10, 2007 at 8:16 am
You can run the express edition on a laptop/desktop. But I strongly discourage this.
First. Laptops move and BREAK!
Second. Since you can't install a...
October 10, 2007 at 8:05 am
All of the suggestions to this point are good, except I have to also agree that yours is not.
I have no issues with Alpha or numeric keys if...
October 10, 2007 at 7:07 am
Can you post the name of the database? The reason is, I suspect that the issue has to do with the USE and the database name.
Try rather than ""...
October 9, 2007 at 11:25 am
Google Toolbar. Spell check, links from system to system.
October 9, 2007 at 11:02 am
I agree with everyone about using SQL to do formatting, but this will work
DROP TABLE #Doit
CREATE TABLE #Doit
(a INT IDENTITY,z INT)
go
INSERT INTO #Doit(z)
VALUES(NULL)
GO 50
SELECT '------------------
',a,'
-----------------'
FROM #Doit
October 9, 2007 at 10:51 am
skrilla99 (10/5/2007)
Physical Memory - 1 GBMin/Max Memory in SQL Server - 4/2,147,483,647
Target (Avg) - 461,903
Total (Avg) - 70,550
SQL Server and Windows 2003 with only 1GB of RAM?
There is your problem....
October 9, 2007 at 10:21 am
You don't understand the difference here. Oracle has more functionality. Agreed! But is it a better product? I don't think so.
When I was an...
October 5, 2007 at 7:07 am
Viewing 15 posts - 271 through 285 (of 514 total)