I have seen some videos from the Microsoft guys , who teach us how to change certain things in the Vista OS through Microsoft Visual Studio 2005 ??!! .... they say : it`s as simple as that .....
i have a problem with dinamic sql, pls help
i want to dinamycally update a table from my database
this is the code i wrote so far:
declare @temp char
set @temp = Cast(@nr_crt as char)
declare @Result varchar (8000)
select column_name into #temp from information_schema.columns where...
i have a problem with dinamic sql, pls help
i want to dinamycally update a table from my database
this is the code i wrote so far:
declare @temp char
set @temp = Cast(@nr_crt as char)
declare @Result varchar (8000)
select column_name into #temp from information_schema.columns where...
Hallo , i have a small problem , i made a form page ,i made a drop down list wich has the AUTO-POST-BACK property, and i made a text-box wich has to be cleared at each POST-BACK , but i don`t know exactly how.Please help
i need to update a table that i select dinamicaly
at update i need to acces the table's columns and asign eash a variable. here i'm stuck because i don't know how many columns the tables has, their names, and the variables i need to insert in them
-- if @a is the table that i imput
exec...
Can someone help me with an algoritm for updating a table imputed dinamicaly .
what steps do i have to take to find out the the tables columns , and update .
i want to make a query in VS2005 wich allows me to dinamicaly imput a table and a column , something like :
select * from @a where @b='something'
can someone pls help me with the sintax?
thank you
is there a way that the MSSQL2000 doesn`t show a column if it`s value in it is NULL, or a way in VS2005, for making a website, that doesn`t let me to see the column if it is NULL.
it`s unproffesional to see on a website with columns with NULL values. Please help . I tried the hole afternoon...
today i wanted to calculate the difference in years from the date of birth untill today ( how old i am )
so i used the datediff function :
select datediff (year, 1982-01-01, getdate())
(no column name)
---------------------
101
is that possible that i am 101 years old, or i didn`t use the...
hello , i have here a procedure wich gives me all data from one employee, but the result table gives me more than 4 times the ID column , how should i write it so that it will bring me only one time this column ?
CREATE PROCEDURE EmployeeDetails
@nr int
AS
BEGIN
SELECT * FROM table1
INNER JOIN...
does anybody know how to use in a MSSQLSRV2000 db the LEVENSHTEIN function .... i heard it`s great ! it returns a number that is the distance between 2 strings , for example
between : radio and radoi the function gives me 2
--http://www.merriampark.com/ld.htm
create function LEVENSHTEIN...
hello , thinking of normalising my db i wanted to index the name column so that there is no duplicate possible .
this is the index that i made :
ALTER TABLE [dbo].[table] WITH NOCHECK ADD
CONSTRAINT [PK_table] PRIMARY KEY CLUSTERED
(
[usr_id]
) ON [PRIMARY]...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.