Viewing 15 posts - 46 through 60 (of 359 total)
Does the batch file on computer B work using the same credentials you are logging on to Computer A with?
***The first step is always the hardest *******
October 12, 2018 at 9:07 am
yes this is possible, the update could block any other query on that table, it would all depend on where the data is held and what lock your update has...
***The first step is always the hardest *******
September 6, 2018 at 2:11 am
look at monitoring tools such as redgate
***The first step is always the hardest *******
September 6, 2018 at 1:49 am
Lead by example, set a good example get a good result, its like bringing up kids 🙂
Plus get them on this site
***The first step is always the hardest *******
September 6, 2018 at 1:45 am
ooch, a bit of over processing, i guess your are looping through and passing different parameters into @SQL_TempTable_Insert
thats going to be really slow.
I would take a look...
***The first step is always the hardest *******
September 2, 2018 at 7:35 am
If your DB server is not capable of taking the through put then you need to up the spec of the DB server. alternatively you need to go back to...
***The first step is always the hardest *******
September 2, 2018 at 5:58 am
I think based of your description it would be hard for anyone to offer any advice, i can ready your explanation in a few ways and give different answers for...
***The first step is always the hardest *******
September 1, 2018 at 3:38 pm
whats the purpose of database B?
you mention Database B has a different schema to database A, is this by design or do you modify the schema before your...
***The first step is always the hardest *******
August 22, 2018 at 6:14 am
when updating information based on an external source be it CSV, BCP or whatever I always like to keep an audit trail of say last 6 months of updates. ***The first step is always the hardest *******
August 22, 2018 at 6:08 am
im not 100 sure exactly what you want but if the second line is always blank then start at the 3rd
BULK INSERT Table_name FROM path_filename WITH (FIRSTROW = 3,FIELDTERMINATOR = '','',ROWTERMINATOR =...
***The first step is always the hardest *******
August 22, 2018 at 5:14 am
depending on your datefirst settings you could try incorporate weekday
select datepart(WEEKDAY,getdate()) -- if select @@DATEFIRST = 7 (default) then today would be 2
alternatlivly
look at setting...
***The first step is always the hardest *******
August 6, 2018 at 9:51 am
In my current role i deal with Data in one way or another, day in, day out and I think its important to have a good understanding of the laws...
***The first step is always the hardest *******
August 6, 2018 at 9:21 am
***The first step is always the hardest *******
August 3, 2018 at 5:11 am
for beginners may i recommend Sams tech yourself SQL in 10 minutes 🙂 10 minutes later you will be able to write the SQL to answer these questions yourself 🙂
***The first step is always the hardest *******
August 3, 2018 at 2:21 am
If you want to find a column that has a specific character you can use pat index
EG ***The first step is always the hardest *******
Select * from mytable
where patindex('%["]%',my_column)>0
August 2, 2018 at 5:48 am
Viewing 15 posts - 46 through 60 (of 359 total)