Viewing 15 posts - 166 through 180 (of 231 total)
yisaaacs (1/19/2009)
its nothing complicated, but im having trouble formatting the resultset...
January 20, 2009 at 1:29 am
Jack Corbett (1/19/2009)
Maxim has pointed you in the right direction. Keep in mind that you can use all comparison operators in join's.
jack isn't is good to use WHERE EXISTS...
January 20, 2009 at 1:20 am
geetanjaliks (1/12/2009)
Hello All,I am trying to copy excel data which is getting updated continuosly to a SQL server table....
Why don't you go for SSIS?
January 20, 2009 at 12:40 am
the same way sp_helptext 'fnc'
January 20, 2009 at 12:37 am
C.K.Shaiju (1/19/2009)
January 19, 2009 at 12:31 am
surya.narayana (1/15/2009)
I have SSIS package which has 5 dataflows and each dataflow copies around 10 million records. When i execute this package from Business Intelligence studio, It was completing in...
January 19, 2009 at 12:26 am
AShehzad (1/18/2009)
Is it possible to change owner of an object to sys? If yes then what privileges will be required for it.Regards
you cannot change it to sys, Sys schema is...
January 19, 2009 at 12:21 am
it's not the problem of open transactions, the user does not have permission to view the table(GRANT)
January 16, 2009 at 3:39 am
AS said this can be done by usning FOR XML path also....
SELECTSTUFF((
SELECTDISTINCT ', ' + cast(object_id as varchar(10))
FROMsys.objects
FOR XML PATH('')), 1, 1, '') AS 'Ids'
January 16, 2009 at 3:28 am
Its not possible to deploy the stored proc w/o script. You have to run the script on client machine.
January 16, 2009 at 3:26 am
In simple words...
Inner Join returns matching records from two or more tables.
Cross Join --Returns carteian result. E.g tableA contains 2 record, tableB contains 10 records. using cross join the result...
January 16, 2009 at 3:14 am
its wrking used the same query olny retrived distinct records from tmpPoj..:)
SELECT tmp.PojID, tmp.Cat,
SUM(Case...
January 16, 2009 at 3:10 am
here's your answer...
DROP TABLE tmpPoj
DROP TABLE tmpCat
CREATE TABLE tmpPoj
( PojID INT, Cat VARCHAR(10), Total INT )
CREATE TABLE tmpCat
( CatIDINT, Cat VARCHAR(10) )
INSERTtmpPoj
SELECT1, 'A', 1 UNION
SELECT1, 'B', 2 UNION
SELECT2, 'C', 10...
January 16, 2009 at 1:28 am
As you mention,
For a valid insert the tracks table may contain a record with the same grProductID or the same grRecordingID (as in the source tables), but NOT the same...
January 16, 2009 at 1:08 am
can you elaborate it more what operation you want to perform primary key on schema / data?
January 16, 2009 at 1:00 am
Viewing 15 posts - 166 through 180 (of 231 total)