Viewing 15 posts - 1 through 15 (of 50 total)
I would say Cube is a representation of data similiar like a rubix cube. Where you can look at data from different angles(in analysis world - Dimensions). You can use...
November 10, 2008 at 7:08 pm
I had a similiar situation to update some old Ids with New IDs... my list contains around 1000-1500 rows in excel...
Save the sheet as a CSV first...
I did...
July 8, 2004 at 11:50 am
what you want to achieve ? send the table definition for both Statusxref and ITRegInfo tables.
Assume its something like this...
Select StatusXref.StatusId , ITRegInfo.Status From StatusXref Where StatusXref.StatusId = ITRegInfo.StatusId
define your...
June 22, 2004 at 8:10 am
In Simple, SQL Developer version has enterprise manager, query analyzer and all kind of development stuff..
MSDE has only Service Manager to deal with! no enterprise manger or query analyzer.
Linto
June 22, 2004 at 8:07 am
I read somewhere that you can purchase windows2000 license and install windows NT4.0.. is that applies for SQL also ?
Linto
May 5, 2004 at 8:24 am
see a sample
Col1 -- is the unique column
col2 is the zip code column..
update table2 set col2 = a.col2 from table2 join (select col1,substring(col2,1,5) as col2 from table2 )a on table2.col1=a.col1
Thanks
Linto
February 27, 2004 at 12:30 pm
Sorry if i misunderstood you..
First, the sample code put in the forum is not by me.. its by somebody else. To get rid of the error modify the line
SET...
February 27, 2004 at 8:12 am
Check whether NOT NULL constraint is set on the production database for security_id column in user_security table.
Linto
February 25, 2004 at 3:15 pm
use DATEPART function and retrieve the date parts from the date retrieved.
declare @dtTime datetime
set @dtTime = getdate()
SELECT CAST(DATEPART(m, @dtTime)as varchar) +'/'+ CAST(DATEPART(d, @dtTime)as varchar) +'/'+ CAST(DATEPART(yy, @dtTime)as varchar)
Linto
February 25, 2004 at 3:12 pm
How you restored the database ?? using DTS ? or backup/restore?
If you attempted DTS, whether you selected copying constraints ??
Linto
February 25, 2004 at 3:04 pm
Its not clear from the question.
What you want to do ?? When you delete the BENEFITTYPE from the web page, you want to delete all the BENEFITS associated with it...
February 25, 2004 at 2:58 pm
Make sure that there is no other triggers created for the table using
sp_helptrigger
Linto
February 25, 2004 at 2:37 pm
I got an error while trying to run a query in a similiar way..
Whats the difference??
I got this error message
Server: Msg 207, Level 16, State 3, Line 1
Invalid...
February 25, 2004 at 2:25 pm
I don't see a reason why we are going away from the current one!!
If you want a different logo, try entirely different one, instead of building based on existing one.
Linto
February 20, 2004 at 12:45 pm
Viewing 15 posts - 1 through 15 (of 50 total)