Viewing 15 posts - 886 through 900 (of 960 total)
Are you refering to investment banking ?
Generally there are groups of data such as
Company data
Sector data
Trading data
Corporate filings provide a rich source of information , you could...
June 20, 2011 at 1:02 am
Are u able to ping the server , could u try creating a file with .udl extn and see if your able to connect using sal native client.I would double...
June 20, 2011 at 12:55 am
By design its implied that if your are an OS level administrator you would anyway have access to database files and services which could be used to bring the server...
June 20, 2011 at 12:46 am
Are u refering to forms authentication on reports server ?
http://msdn.microsoft.com/en-us/library/cc281383.aspx
All users would login as browsers but it would be the administrators job to ensure only relevant users have...
June 20, 2011 at 12:43 am
this article gives a good idea on where to place the membership db, since your tracking your own website users your membership database objects would need to be part of...
June 18, 2011 at 8:45 am
Buddy LOL 😀
June 18, 2011 at 4:34 am
hi
on a related note , i once suggested the below approach and wanted your input on if it was a good solution, naturally i am talking about a huge...
June 18, 2011 at 4:29 am
declare @roomtype varchar(10)
declare @startdate datetime
declare @endate datetime
SELECT * FROM ROOM_PRICES
where startdate >= @startdate
and stopdate <= isnull(@stopdate , getdate())
and roomtype = @roomtype
June 18, 2011 at 4:02 am
while i personally use Try catch block
There are other ways of exception handling such as using begin tran with if @@error also.
June 18, 2011 at 3:55 am
Not at all , Infact I'll be glad if to know if theres a better way of doing this.
What i have setup is as follows
A local machine with SQL installed...
June 18, 2011 at 2:28 am
are the columns char or varchar datatype , also have you tried ltrim , rtrim on the results provided the by the case statements
June 17, 2011 at 6:14 am
I have a report which i use to check the health of my database servers, as a part of it i use xp_cmdshell to execute pings to the db server
June 17, 2011 at 4:26 am
Viewing 15 posts - 886 through 900 (of 960 total)