Viewing 15 posts - 601 through 615 (of 662 total)
In the days before the company upgraded the network to 100Mbits the system engineer installed a second network card(100Mbits) on my Pc and another card (100Mbits) on the my SQL...
January 14, 2003 at 4:25 pm
Look for the ThinSlicer example on the web!
January 12, 2003 at 12:16 pm
Hopefully its relevant
BOL 2000
SET ANSI_PADDING
Controls the way the column stores values shorter than the defined size of the column, and the way the column stores values that have trailing blanks...
January 9, 2003 at 3:23 pm
I was thinking about getting away from the 8000 limit by not using XML. Suppose it will cause to much of a rewrite/mods?
January 7, 2003 at 4:02 pm
OK, so round tripping will be a problem.
Can the data be converted to a ADO recordset of some sort, after which it can loaded in a SQL temp table, processed,...
January 7, 2003 at 3:45 pm
AS Antares686 was saying "Query optimiser is stumbling somewhere." I thought it may just tickle it to generate a "better" / different plan. Agree in principal with your statement "ascending...
January 7, 2003 at 1:05 pm
1) Migrate all the where clauses into the ON part of the statement if possible. Move the m.(MOAT) to be the first table in the FROM and make the...
January 6, 2003 at 9:16 pm
Hope this is of some help:
SELECT FDT_NAme, F_Description,
(Select Case t.FDT_NAme When 'UA_PHONE' Then a.UA_PHONE
...
January 6, 2003 at 5:22 pm
I think your explanation is clear enough but agree with previous post. If you can post the script to create and populate 3 to five records in both tables it...
January 6, 2003 at 4:53 pm
Agree, seems like shooting oneself in the foot. What about the AT command? Can access it through xp_cmdshell.
January 5, 2003 at 5:21 pm
Try this
Select ('SELECT a.* FROM OPENROWSET(''SQLOLEDB'', ''Trusted_connection=yes;Server='
+ @@Servername
+''', ''SELECT...
December 10, 2002 at 7:13 pm
Export data as rows and then use a pivot table in Excel.
Example
SQL data rows
Prod1, qty2
Prod2 qty2
After pivot
Prod1 Prod2
Qty1 Qty2
December 10, 2002 at 3:06 pm
If possible, can you supply the steps and table / index scripts.
Would like to try and reproduce the problem?
Thanks
December 10, 2002 at 2:56 pm
Are you after async processing.
Fire a command and check periodically if finished. Done in dblib. While server runs monster sp the app was initializing the controls and then wait for...
December 8, 2002 at 8:17 pm
Nice problem!
Needs to check maxlevels(endless loop)!
Set NoCount on
-- Drop Table TestII
GO
Create Table TestII(catId INT IDENTITY,catParentId INT,catName nvarchar(50))
go
insert TestII Values (0,'Root1')
insert TestII Values (0,'Root2')
insert TestII Values (1,'SubRoot1.1')
insert TestII...
December 8, 2002 at 6:33 pm
Viewing 15 posts - 601 through 615 (of 662 total)