DAX

Technical Article

Master server as Target server?

  • Topic

Hi there,I'm using a master server to manage similar jobs on several SQL Servers, and this works fine. There is a nagging peculiarity which I find strange: these jobs for the targetserver should run on the masterserver as well. It seems I cannot designate the master as a target. Is this correct, or do I […]

You rated this post out of 5. Change rating

2004-04-15

1 reads

Technical Article

RE: functions in select statements

  • Reply

If I was to do a select statement from the [Warrants] table below off of intMasterAcctID I would get two rows returned for intMasterAcctID=1 The function basically returns the intMasterAcctID, Warrants and Warrant PercentsSo:Select * from WarrantCodesByAcct(2) returns2,'PP',100select * from WarrantCodesByAcct(1) (with 2 qualifying records)1,'PP,FA','50,50'Basic table layout w/datawarrantsintID,intMasterAcctID,intWarrantCodeID,intWarrantPerc1 1,1,1,50 2,2,1,100 3,3,1,100 4,1,2,50WarrantCodes intID,vchrCode,vchrDescription 1,'PP','Personal Property' […]

You rated this post out of 5. Change rating

2004-04-12

Technical Article

RE: Question of the Day for 29 Mar 2004

  • Reply

That would probably be to difficult to administrate. I am thinking more in conceptual terms. By thinking of it in these terms questions could be tailored (made easier or harder). In the end all you really have is the consolation of the percentiles and maybe a new fact to add to your repertoire 

You rated this post out of 5. Change rating

2004-03-29

Technical Article

RE: Sum Aggregate

  • Reply

SELECT YearNumber, MonthNumber, SUM(Occurances) AS CountOfData FROM (select YEAR(DateField) AS YearNumber, MONTH(DateField) AS MonthNumber, Count(datacount) As Occurances FROM datatable GROUP BY SQLDate)Dates GROUP BY YearNumber, MonthNumber Order By YearNumber, MonthNumber This should give you what you are looking for.

You rated this post out of 5. Change rating

2004-03-11

Technical Article

T-SQL Hierarchy Recursive Function

  • Topic

I have a table that lists the employee and their supervisorFor exampleemployee_id    supervisor_id1234               56785678               78927892               9999  I need to load in a new SUPERVISORS table (fields supervisor_id, supervisee_id), all the supervisors and who they supervise, and who they supervise, supervise, etc..... So, 7892 supervises 1234 and 5678and   9999 supervises 7892,1234, and 5678.Is there a simple way […]

2004-02-26

2 reads

Technical Article

RE: Automating DTS (sql 2k)

  • Reply

Ray,They will provide us will all needed text files (may include CSV, fixed field, XML). The problem is not getting the files but handling all the different formats once we get them.Bill

2004-02-23

Technical Article

RE: Review of Lumigent Log Explorer v3

  • Reply

Having used Log Explorer for over 3 years, I've found some additional uses other than restoring data:Exporting the transaction log records to a SQL table and running queries to determine who and when data was modifiedThe Load Analysis feature particularly the information on page splits is interesting. I've been unable to find any other method […]

2004-02-13

Technical Article

RE: OLE DB provider EDAOLEDB.1

  • Reply

Sorry, I gueas I shouldn't hit enter. -- anyway the query is something like select column1,column2 from openquery(EDACONN,'select column1,column2 from table') We can run it, it returns 78000 records. We can run it about 3 - 4 times then we'll get an error ... OLE DB provider 'EDAOLEDB.1' reported an error. The provider ran out […]

You rated this post out of 5. Change rating

2004-02-04

1 reads

Blogs

SQL Saturday Boston 2024 Slides

By

Thanks to everyone that came to my talks. Slides are below. Best Practices for...

Small Data SF 2024

By

I can’t remember how I heard about Small Data SF 2024, but it caught...

A New Word: Moledro

By

moledro – n. a feeling of resonant connection with an author or artist you’ll...

Read the latest Blogs

Forums

7 sept, scheduled book

By philip.scott

Comments posted to this topic are about the item 7 sept, scheduled book

7 sept, schedlued article

By philip.scott

Comments posted to this topic are about the item 7 sept, schedlued article

6 sept, published book

By philip.scott

Comments posted to this topic are about the item 6 sept, published book

Visit the forum

Question of the Day

Azure Data Lake Storage Gen 2

Azure Data Lake Storage Gen 2 is built on ...?

See possible answers