Viewing 12 posts - 1 through 12 (of 12 total)
Windows Authentication mode allows a user to connect through a Microsoft Windows user account
and
Mixed Mode allows users to connect to an instance of SQL Server using either Windows Authentication or...
February 4, 2009 at 10:00 pm
certainly by looking at your requirement it is not clear what you want and why? but anyway i think your problem can be either resolved with some smart logic using...
February 2, 2009 at 2:36 am
can you tell me how are you thinking of passing parameters to text file (.sql ext)? sql file is not an exe to which you can pass parameters but it...
February 2, 2009 at 2:18 am
if i am not wrong what i thought earlier is you are using sql variable in back-end but it seems that you want to format your query in the front-end...
February 1, 2009 at 7:10 am
hey what i think is you have variable type of data in your document. you definately need to select proper data type for data. if you have numeric value then...
January 31, 2009 at 7:03 am
hi frnd,
I think first n foremost thing u need is to have proper indexes in place.
I want to know which sql server u r using. it is a very expected...
January 31, 2009 at 2:58 am
most probably as i believe, there is either something wrong with the code or some problem with your network if you are accessing server over network. r u always getting...
January 31, 2009 at 2:41 am
Although i believe that dynamic query can be achieved by formatting query in the following way:
declare @col varchar(30)
set @col='empname'
exec('select '+@col+',empname from test')
declare @tab varchar(30)
set @tab='test'
exec('select empname...
January 31, 2009 at 2:26 am
hi frnd,
i dont think there is any option of setting column name to any variable and then later using that variable as column name.
becuase variables are used for column value...
January 31, 2009 at 1:55 am
Thanks for your interest,
Following is the example. hope it will help you for your problem.
Create Function [dbo].[fn_ParseDelimitedStrings]
(@String nvarchar(3500), @Delimiter char(1))
Returns @Values Table
(
RowId int Not Null Identity(1,1) Primary Key
,Value...
January 31, 2009 at 1:16 am
yes, this is the first thing you must always do when you migrate data from one source to another. you must always check your data consistency whether it is in...
January 31, 2009 at 1:04 am
unfortunately, sql server doesn't provide array since it is not a full fledge programming language. although the problem can be solved using concatenated string with some specific delimiter. for e.g....
January 31, 2009 at 12:48 am
Viewing 12 posts - 1 through 12 (of 12 total)