Viewing 15 posts - 931 through 945 (of 1,253 total)
Hi
cant u use opendatasource or openrowset for this.
January 23, 2008 at 2:18 am
Hi
Functions have many limitations as you have seen . Cant yu use a stored proc for this instead of the function . you will not be able to use the...
January 23, 2008 at 2:10 am
I think it should select arabic values. Collation also depends on the regional settings of the machine from whihc the query is exeuted.
I cannot setup a Arabic...
January 23, 2008 at 1:44 am
Hi
Whats the collation of the column that u r updating.
Also does the following work. Does the value get changed from 'a' to 'A'.
declare @cod as nvarchar(5)
set @cod='A'
update dbo.t1 set...
January 23, 2008 at 1:21 am
Hi
Search this forum and the web for various articles and read them. Check out BOL. Come back with some specific doubts. 🙂
January 23, 2008 at 12:10 am
vyas (1/22/2008)
I am able to execute without any problem. I tried on sql server 2005See the following code
declare @a datetime
set @='01.01.2008'
select dateadd(dd,1,convert(datetime,@a,103))
This post is in SQL Server 2000...
January 22, 2008 at 2:06 am
Ian Yates (1/20/2008)
January 21, 2008 at 11:21 pm
Hi
Another way would be to have a single phone table (no parentkey business) and have tables that stores the relation btween phone_key and vendor_key. So with this u will...
January 21, 2008 at 11:17 pm
Hi
SQL waits for a certain amount of time for doing a task and even after waiting if its not possible to do the task it gives a time out error.
there...
January 21, 2008 at 11:03 pm
Hi
whats the collation of the column. u can use convert/CAST with collate keyworkd for getting the data in desired colllation (language) . Is this what u require ?
SELECT ....
cast(table1.col1...
January 21, 2008 at 10:58 pm
Hi
U cannot use 2 columns in the where condition and in the NOT IN caluse. Also cannot separate columns using commas in the where caluse.
One wayof doing this is
SELECT...
January 21, 2008 at 10:53 pm
Hi
If i have understood your question correctly then here goes...
You can created SQL logins from the windows logins that you have, create a group consisting of these logins. This group...
January 21, 2008 at 1:45 am
There is no definite formula to compute the datat ype and lengths of your columns. It all depends on type and the nature of the data you want to store...
January 21, 2008 at 1:42 am
Viewing 15 posts - 931 through 945 (of 1,253 total)