Viewing 15 posts - 3,616 through 3,630 (of 13,469 total)
gamit124 (4/19/2013)
its not working
Remember we are not sitting behind you, looking over your shoulder.
i have no idea what is working or not working.
If you want help with...
April 19, 2013 at 5:51 am
your table needs to use nvarchar and not varchar fields to hold unicode data.
in addition, any parameters you are using also need to be nvarchar...so in .NET language, for example...
April 19, 2013 at 5:39 am
Ive never seen that in the options no.
You can do a find and replace very easy though
[INSERT INTO ] --> [INSERT INTO MYDB.]
April 19, 2013 at 4:29 am
i missed the part about restoring on the remote server.
if you have a linked server, i know you can do EXECUTE AT;
here's an example of creating a table on the...
April 18, 2013 at 2:59 pm
just about everything is an option when it comes to scripting.
in SQL2008 SSMS, go to Tools>>Options>>expand SQL Server Object Explorer>>Scripting.
one of the options is "Script USE <database>
in your case,...
April 18, 2013 at 2:37 pm
just double checked, and i can create default constraints, but no check constraints on a table variable:
declare @mytable table
(id int identity(1,1) not null primary key,
name varchar(30) unique,
employee char(1) default...
April 18, 2013 at 1:43 pm
you can use a UNC path, assuming permissions for the network are in place:
RESTORE DATABASE MyDatabase FROM DISK='\\LOWELLSMACHINE\c$\SQLBackups\2008Backups\MyDatabase.bak'
April 18, 2013 at 1:35 pm
for table variables, you can create unique constraints, but you cannot name them.
i don't think they allow default or check constraints either.
only temp tables or regular tables will allow a...
April 18, 2013 at 1:30 pm
sqlfriends (4/18/2013)
The reason I asked this is because we have a view that is...
April 18, 2013 at 1:05 pm
you don't have to have a local smtp server; anyones mail server will do, including google, comcast or whoever you have an email account with.;
I've set up google gmail ...
April 18, 2013 at 12:33 pm
as an aside, I have not gotten a linked server for access to work in SQL 64 bit / any version; against either a .mdb or .accdb
i can get...
April 18, 2013 at 12:31 pm
1. Don't uninstall and then reinstall. that's not going to help resolve the issue, even though it "seems" to.
2. we really need the exact error you get. that tells us...
April 18, 2013 at 6:10 am
there is an ISDATE function in SQL as well;
here's an example base don your post:
/*
/*
Eid Variable Date? Converted?
---- --------- ----------- -----------------------
1 ...
April 17, 2013 at 2:49 pm
Markus (4/17/2013)
However, I have the trigger selecting the first column in the...
April 17, 2013 at 1:06 pm
Viewing 15 posts - 3,616 through 3,630 (of 13,469 total)